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