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