ProfileAddress constructor

const ProfileAddress({
  1. String? title,
  2. bool? isDefault,
  3. ProfileAddressType? addressType,
  4. String? streetAddress,
  5. String? locality,
  6. String? region,
  7. String? postalCode,
  8. String? country,
  9. String? raw,
  10. String? deliveryNote,
  11. String? recipient,
  12. String? company,
  13. String? phoneNumber,
})

ProfileAddress default constructor

Implementation

const ProfileAddress({
  this.title,
  this.isDefault,
  this.addressType,
  this.streetAddress,
  this.locality,
  this.region,
  this.postalCode,
  this.country,
  this.raw,
  this.deliveryNote,
  this.recipient,
  this.company,
  this.phoneNumber,
});