textDecoration 属性

String textDecoration

获取 "text-decoration" 的值

实现

String get textDecoration => getPropertyValue('text-decoration');
void textDecoration=(String value)

设置 "text-decoration" 的值

实现

set textDecoration(String value) {
  setProperty('text-decoration', value, '');
}