CardTokenData constructor

CardTokenData({
  1. String? bin,
  2. String? brand,
  3. String? cardHolderName,
  4. String? country,
  5. String? expiryMonth,
  6. String? expiryYear,
  7. String? issuer,
  8. String? last4,
  9. List<String>? paymentMethods,
  10. bool? requiresCvv,
})

Implementation

CardTokenData({
  this.bin,
  this.brand,
  this.cardHolderName,
  this.country,
  this.expiryMonth,
  this.expiryYear,
  this.issuer,
  this.last4,
  this.logo,
  this.paymentMethods,
  this.requiresCvv,
});