style property
set
style
(TextStyle? v)
Sets the text style and marks the render object as needing paint.
Implementation
set style(TextStyle? v) {
if (_style == v) return;
_style = v;
_effectiveStyle = null;
markNeedsPaint();
}