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