backgroundColor 属性

String backgroundColor
override

获取 "background-color" 的值

实现

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

设置 "background-color" 的值

实现

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