style property
BloomComputedStyle
get
style
The active computed styling applied to this flex container.
Implementation
BloomComputedStyle get style => _style;
set
style
(BloomComputedStyle value)
Implementation
set style(BloomComputedStyle value) {
if (_style != value) {
_style = value;
markNeedsLayout();
markNeedsPaint();
}
}