AuthorizationMerchantData constructor

const AuthorizationMerchantData({
  1. AuthorizationCategory? category,
  2. String? city,
  3. String? country,
  4. String? name,
  5. String? networkId,
  6. String? postalCode,
  7. String? state,
  8. String? terminalId,
  9. String? url,
})

merchant_data_specs

Details about the seller (grocery store, e-commerce website, etc.) where the card authorization happened.

Implementation

const AuthorizationMerchantData({
  this.category,
  this.city,
  this.country,
  this.name,
  this.networkId,
  this.postalCode,
  this.state,
  this.terminalId,
  this.url,
});