style property

TextStyle get style

The style used to draw the text.

Implementation

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

Implementation

set style(TextStyle style) {
  if (_style == style) return;
  _style = style;
  _dirty = true;
}