textHeightBehavior property

TextHeightBehavior? get textHeightBehavior

Implementation

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

Implementation

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