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