style property
TextStyle?
get
style
The text style applied to the input text.
Implementation
TextStyle? get style => _style;
set
style
(TextStyle? v)
Sets the text style.
Implementation
set style(TextStyle? v) {
if (_style == v) return;
_style = v;
_cachedPlaceholderStyle = null;
markNeedsPaint();
}