backgroundColor property

String backgroundColor
override

Gets the value of "background-color"

Implementation

String get backgroundColor => this._backgroundColor;
void backgroundColor= (String value)
override

Sets the value of "background-color"

Implementation

set backgroundColor(String value) {
  _backgroundColor = value == null ? '' : value;
}