MastercardBillingAddress constructor

const MastercardBillingAddress({
  1. String? street,
  2. String? street2,
  3. String? city,
  4. String? stateProvince,
  5. String? postcodeZip,
  6. String? country,
})

Implementation

const MastercardBillingAddress({
  this.street,
  this.street2,
  this.city,
  this.stateProvince,
  this.postcodeZip,
  this.country,
});