validateExpMonth method
Checks whether or not the {@link #expMonth} field is valid.
@return {@code true} if valid, {@code false} otherwise.
Implementation
bool validateExpMonth() {
return expMonth != null && expMonth! >= 1 && expMonth! <= 12;
}
Checks whether or not the {@link #expMonth} field is valid.
@return {@code true} if valid, {@code false} otherwise.
bool validateExpMonth() {
return expMonth != null && expMonth! >= 1 && expMonth! <= 12;
}