isPast static method

bool isPast(
  1. DateTime date
)

Checks if date is in the past.

Implementation

static bool isPast(DateTime date) => date.isBefore(DateTime.now());