validateExpYear method

bool validateExpYear(
  1. DateTime now
)

Checks whether or not the {@link #expYear} field is valid.

@return {@code true} if valid, {@code false} otherwise.

Implementation

bool validateExpYear(DateTime now) {
  return expYear != null && !ModelUtils.hasYearPassed(expYear!, now);
}