Authorization constructor

const Authorization({
  1. String? authorizationCode,
  2. String? bin,
  3. String? last4,
  4. String? expMonth,
  5. String? expYear,
  6. String? channel,
  7. String? cardType,
  8. String? bank,
  9. String? countryCode,
  10. String? brand,
  11. bool? reusable,
  12. String? signature,
  13. String? accountName,
  14. String? mobileMoneyNumber,
})

Implementation

const Authorization({
  this.authorizationCode,
  this.bin,
  this.last4,
  this.expMonth,
  this.expYear,
  this.channel,
  this.cardType,
  this.bank,
  this.countryCode,
  this.brand,
  this.reusable,
  this.signature,
  this.accountName,
  this.mobileMoneyNumber,
});