backgroundColor 属性

String backgroundColor

获取 "background-color" 的值

实现

String get backgroundColor => getPropertyValue('background-color');
void backgroundColor=(String value)

设置 "background-color" 的值

实现

set backgroundColor(String value) {
  setProperty('background-color', value, '');
}