MerchantLocation constructor

MerchantLocation({
  1. String? city,
  2. String? countryCode,
  3. String? postalCode,
})

Implementation

MerchantLocation({
  this.city,
  this.countryCode,
  this.postalCode,
});