style property
TextStyle
get
style
Implementation
TextStyle get style {
if (_style.object == null) {
final TextStyle? _baseStyle = super.baseStyle;
_style.object = this.parse(_baseStyle, _attributes) ?? _baseStyle;
}
return _style.object ?? const TextStyle();
}