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