style property
BloomComputedStyle
get
style
The computed typography styling.
Implementation
BloomComputedStyle get style => _style;
set
style
(BloomComputedStyle value)
Implementation
set style(BloomComputedStyle value) {
if (_style != value) {
_style = value;
_initTextPainter();
markNeedsLayout();
markNeedsPaint();
}
}