backgroundColor property
Implementation
@override
CSSColor? get backgroundColor => _backgroundColor;
      
      set
      backgroundColor
      (CSSColor? value) 
      
    
    
    
Implementation
set backgroundColor(CSSColor? value) {
  if (value == _backgroundColor) return;
  _backgroundColor = value;
  renderBoxModel?.markNeedsPaint();
}