perspectiveOrigin property - CssStyleDeclarationBase class - dart:html library (original) (raw)
String getperspectiveOrigin
Gets the value of "perspective-origin"
Implementation
String get perspectiveOrigin => getPropertyValue('perspective-origin');
setperspectiveOrigin (String value)
Sets the value of "perspective-origin"
Implementation
set perspectiveOrigin(String value) {
setProperty('perspective-origin', value, '');
}