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