isInPast method

bool isInPast()

Check if the DateTime is in the past

Implementation

bool isInPast() {
  return isBefore(DateTime.now());
}