textDecoration 属性

String textDecoration
override

获取 "text-decoration" 的值

实现

String get textDecoration => this._textDecoration;
void textDecoration=(String? value)
override

设置 "text-decoration" 的值

实现

set textDecoration(String? value) {
  _textDecoration = value == null ? '' : value;
}