hasExpired method

bool hasExpired()

Check if the date is still valid.

Implementation

bool hasExpired() {
  if (this == null) return true;
  return this.isInPast();
}