isPast property
bool
get
isPast
Returns true if this date is in the past.
Example: DateTime.now().isPast -> false.
Implementation
bool get isPast => isBefore(.now());
Returns true if this date is in the past.
Example: DateTime.now().isPast -> false.
bool get isPast => isBefore(.now());