textWidthBasis property

TextWidthBasis textWidthBasis

Defines how to measure the width of the rendered text.

Implementation

TextWidthBasis get textWidthBasis => _textWidthBasis;
void textWidthBasis=(TextWidthBasis value)

Implementation

set textWidthBasis(TextWidthBasis value) {
  if (_textWidthBasis == value) {
    return;
  }
  assert(() { return _debugNeedsRelayout = true; }());
  _textWidthBasis = value;
}