backgroundRepeat 属性

String backgroundRepeat

获取 "background-repeat" 的值

实现

String get backgroundRepeat => getPropertyValue('background-repeat');
void backgroundRepeat=(String value)

设置 "background-repeat" 的值

实现

set backgroundRepeat(String value) {
  setProperty('background-repeat', value, '');
}