strutStyle property
The StrutStyle used by the renderer's internal TextPainter to determine the strut to use.
Implementation
StrutStyle? get strutStyle => _textPainter.strutStyle;
Implementation
set strutStyle(StrutStyle? value) {
if (_textPainter.strutStyle == value) {
return;
}
_textPainter.strutStyle = value;
markNeedsLayout();
}