expiredBy method

bool expiredBy(
  1. DateTime t
)

Implementation

bool expiredBy(DateTime t) {
  return !t.isBefore(expiry);
}