textHeightBehavior property

TextHeightBehavior? textHeightBehavior

Implementation

ui.TextHeightBehavior? get textHeightBehavior =>
    _textPainter.textHeightBehavior;
void textHeightBehavior=(TextHeightBehavior? value)

Implementation

set textHeightBehavior(ui.TextHeightBehavior? value) {
  if (_textPainter.textHeightBehavior == value) return;
  _textPainter.textHeightBehavior = value;
  _overflowShader = null;
  markNeedsLayout();
}