String backgroundColor

Gets the value of "background-color"

Source

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

Sets the value of "background-color"

Source

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