animationDelay property
      
      double?
      get
      animationDelay
      
    
    
    
Implementation
double? get animationDelay => _animationDelay;
      
      set
      animationDelay
      (double? value) 
      
    
    
    
Implementation
set animationDelay(double? value) {
  if (_animationDelay != value) {
    _animationDelay = value;
  }
}