textHeightBehavior property

  1. @override
TextHeightBehavior? textHeightBehavior
override

Implementation

@override
TextHeightBehavior? get textHeightBehavior => _textPainter.textHeightBehavior;
  1. @override
void textHeightBehavior=(TextHeightBehavior? value)
override

Implementation

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