MmPaymentMethod constructor

MmPaymentMethod({
  1. String? type,
  2. int? lastFour,
  3. int? expMonth,
  4. int? expYear,
  5. String? cardBrand,
  6. String? name,
})

Returns a new MmPaymentMethod instance.

Implementation

MmPaymentMethod({
  this.type,
  this.lastFour,
  this.expMonth,
  this.expYear,
  this.cardBrand,
  this.name,
});