backgroundColor property
Gets the value of "background-color"
Implementation
String get backgroundColor => this._backgroundColor;
Sets the value of "background-color"
Implementation
set backgroundColor(String value) {
_backgroundColor = value == null ? '' : value;
}