EncryptedCard constructor

EncryptedCard({
  1. String? number,
  2. String? expiryMonth,
  3. String? expiryYear,
  4. String? cvc,
  5. String? cardHolderName,
})

Implementation

EncryptedCard({
  this.number,
  this.expiryMonth,
  this.expiryYear,
  this.cvc,
  this.cardHolderName,
});