isPast static method

bool isPast(
  1. DateTime date
)

Check if a date is in the past

Implementation

static bool isPast(DateTime date) {
  return date.isBefore(DateTime.now());
}