strutStyle property

StrutStyle? get strutStyle

The StrutStyle used by the renderer's internal TextPainter to determine the strut to use.

Implementation

StrutStyle? get strutStyle => _textPainter.strutStyle;
set strutStyle (StrutStyle? value)

Implementation

set strutStyle(StrutStyle? value) {
  if (_textPainter.strutStyle == value) {
    return;
  }
  _textPainter.strutStyle = value;
  markNeedsLayout();
}