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