textDecorationColor property - CssStyleDeclarationBase class - dart:html library (original) (raw)

description

String gettextDecorationColor

Gets the value of "text-decoration-color"

Implementation

String get textDecorationColor => getPropertyValue('text-decoration-color');

settextDecorationColor (String value)

Sets the value of "text-decoration-color"

Implementation

set textDecorationColor(String value) {
  setProperty('text-decoration-color', value, '');
}