style property

TextStyle get style

Implementation

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

Implementation

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