AddCardRequest constructor

AddCardRequest({
  1. String? dealerCustomerId,
  2. String? customerCode,
  3. String? cardHolderFullName,
  4. String? cardNumber,
  5. String? expMonth,
  6. String? expYear,
  7. String? cardName,
})

Implementation

AddCardRequest({
  this.dealerCustomerId,
  this.customerCode,
  this.cardHolderFullName,
  this.cardNumber,
  this.expMonth,
  this.expYear,
  this.cardName,
});