backgroundSize property
Background-size
Implementation
@override
CSSBackgroundSize get backgroundSize => _backgroundSize ?? DEFAULT_BACKGROUND_SIZE;
set
backgroundSize
(CSSBackgroundSize? value)
Implementation
set backgroundSize(CSSBackgroundSize? value) {
if (value == _backgroundSize) return;
_backgroundSize = value;
renderBoxModel?.markNeedsPaint();
}