isFuture property

bool get isFuture

Returns true if this date is in the future.

Example: DateTime.now().isFuture -> true.

Implementation

bool get isFuture => isAfter(.now());