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