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

description

String gettransform

Gets the value of "transform"

Implementation

String get transform => getPropertyValue('transform');

settransform (String value)

Sets the value of "transform"

Implementation

set transform(String value) {
  setProperty('transform', value, '');
}