textWidthBasis property Null safety
Defines how to measure the width of the rendered text.
Implementation
TextWidthBasis get textWidthBasis => _textWidthBasis;
Implementation
set textWidthBasis(TextWidthBasis value) {
assert(value != null);
if (_textWidthBasis == value) {
return;
}
_textWidthBasis = value;
markNeedsLayout();
}