isPast method

bool isPast(
  1. DateTime date
)

Checks if a date is in the past

Implementation

bool isPast(DateTime date) {
  return DateComparisons.isPast(date);
}