backgroundColor property

String backgroundColor

Gets the value of "background-color"

Implementation

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

Sets the value of "background-color"

Implementation

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