validateExpiryDate method
Checks whether or not the {@link #expMonth} and {@link #expYear} fields represent a valid expiry date.
@return {@code true} if valid, {@code false} otherwise
Implementation
bool validateExpiryDate() {
return _validateExpiryDate(DateTime.now());
}