textDecoration property - CssStyleDeclarationBase class - dart:html library (original) (raw)
String gettextDecoration
Gets the value of "text-decoration"
Implementation
String get textDecoration => getPropertyValue('text-decoration');
settextDecoration (String value)
Sets the value of "text-decoration"
Implementation
set textDecoration(String value) {
setProperty('text-decoration', value, '');
}