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