isPast property
      
      bool
      get
      isPast
      
    
    
compares time in milliseconds against current timestamp and returns true if time is past
Implementation
bool get isPast => DateTime.now().millisecondsSinceEpoch > this;compares time in milliseconds against current timestamp and returns true if time is past
bool get isPast => DateTime.now().millisecondsSinceEpoch > this;