style property

TextStyle? get style

Implementation

TextStyle? get style => _style;
set style (TextStyle? val)

Implementation

set style(TextStyle? val) {
  if (val == _style) {
    return;
  }

  _style = val;
  _textPainter.text = textTextSpan;
  markNeedsLayout();
}