style property

TextStyle get style

Root style used by unstyled spans.

Implementation

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

Implementation

set style(TextStyle value) {
  if (identical(_style, value)) {
    return;
  }
  _style = value;
  _markTextLayoutDirty();
}