isFuture property
bool
get
isFuture
Returns true if this date is in the future.
Example: DateTime.now().isFuture -> true.
Implementation
bool get isFuture => isAfter(DateTime.now());
Returns true if this date is in the future.
Example: DateTime.now().isFuture -> true.
bool get isFuture => isAfter(DateTime.now());