textHeightBasis property

TextHeightBasis textHeightBasis

Defines how to measure the height of the rendered text.

Implementation

TextHeightBasis get textHeightBasis => _textHeightBasis;
void textHeightBasis=(TextHeightBasis value)

Implementation

set textHeightBasis(TextHeightBasis value) {
  if (_textHeightBasis == value) {
    return;
  }
  assert(() {
    return _debugNeedsRelayout = true;
  }());
  _textHeightBasis = value;
}