textDecorationLine 属性

String textDecorationLine

获取 "text-decoration-line" 的值

实现

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

设置 "text-decoration-line" 的值

实现

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