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());