animationDelay property

double? animationDelay

Implementation

double? get animationDelay => _animationDelay;
void animationDelay=(double? value)

Implementation

set animationDelay(double? value) {
  if (_animationDelay != value) {
    _animationDelay = value;
  }
}