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

description

String gettransitionDelay

Gets the value of "transition-delay"

Implementation

String get transitionDelay => getPropertyValue('transition-delay');

settransitionDelay (String value)

Sets the value of "transition-delay"

Implementation

set transitionDelay(String value) {
  setProperty('transition-delay', value, '');
}