SavedCard constructor

SavedCard({
  1. String? id,
  2. String? brand,
  3. String? last4,
  4. String? expiryMonth,
  5. String? expiryYear,
  6. String? country,
  7. bool? requireCvv,
  8. CvvConfig? cvvConfig,
  9. MethodType? type,
  10. String? bin,
})

Implementation

SavedCard({
  this.id,
  this.brand,
  this.last4,
  this.expiryMonth,
  this.expiryYear,
  this.country,
  this.logo,
  this.requireCvv,
  this.cvvConfig,
  this.type,
  this.bin,
});