backgroundColor 属性
override
获取 "background-color" 的值
实现
String get backgroundColor => this._backgroundColor;
override
设置 "background-color" 的值
实现
set backgroundColor(String? value) {
_backgroundColor = value == null ? '' : value;
}