hasExpired method
Check if the date is still valid.
Implementation
bool hasExpired() {
if (this == null) return true;
return isInPast();
}
Check if the date is still valid.
bool hasExpired() {
if (this == null) return true;
return isInPast();
}