textDecoration property - CssStyleDeclaration class - dart:html library (original) (raw)
String gettextDecoration
override
Gets the value of "text-decoration"
Implementation
String get textDecoration => this._textDecoration;
settextDecoration (String? value)
override
Sets the value of "text-decoration"
Implementation
set textDecoration(String? value) {
_textDecoration = value == null ? '' : value;
}