Address constructor

Address({
  1. String? addressee,
  2. String? addressLine1,
  3. String? addressLine2,
  4. String? city,
  5. String? state,
  6. String? countryCode,
  7. String? postalCode,
  8. String? phoneNumber,
  9. String? email,
  10. Map<String, dynamic>? extraAddressInfo,
})

Constructor to create Address.

Implementation

Address({
  this.addressee,
  this.addressLine1,
  this.addressLine2,
  this.city,
  this.state,
  this.countryCode,
  this.postalCode,
  this.phoneNumber,
  this.email,
  this.extraAddressInfo,
});