backgroundSize property

CSSBackgroundSize backgroundSize

Background-size

Implementation

CSSBackgroundSize get backgroundSize => _backgroundSize ?? DEFAULT_BACKGROUND_SIZE;
void backgroundSize=(CSSBackgroundSize? value)

Implementation

set backgroundSize(CSSBackgroundSize? value) {
  if (value == _backgroundSize) return;
  _backgroundSize = value;
  renderBoxModel?.markNeedsPaint();
}