CardInfo constructor

CardInfo(
  1. String cardNumber,
  2. String holderName,
  3. String expirationYear,
  4. String expirationMonth,
  5. String cvv2,
)

Implementation

CardInfo(this.cardNumber, this.holderName, this.expirationYear, this.expirationMonth, String cvv2)
    : brand = null,
      creationDate = null,
      this.cvv2 = cvv2;