isCcvValid method

bool isCcvValid()

Implementation

bool isCcvValid() {
  try {
    int.parse(cvv);
  } catch (_) {
    return false;
  }

  return cvv.length == 3 || cvv.length == 4;
}