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