animationDirection property - CssStyleDeclarationBase class - dart:html library (original) (raw)
String getanimationDirection
Gets the value of "animation-direction"
Implementation
String get animationDirection => getPropertyValue('animation-direction');
setanimationDirection (String value)
Sets the value of "animation-direction"
Implementation
set animationDirection(String value) {
setProperty('animation-direction', value, '');
}