textWidthBasis property

TextWidthBasis get textWidthBasis

Defines how to measure the width of the rendered text.

Implementation

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

Implementation

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