Address constructor

Address({
  1. String? uuid,
  2. String? addressLine1,
  3. String? displayAddressLine,
  4. String? city,
  5. bool? active,
  6. Country? country,
  7. int? version,
  8. String? state,
  9. String? zipcode,
})

Implementation

Address({
  this.uuid,
  this.addressLine1,
  this.displayAddressLine,
  this.city,
  this.active,
  this.country,
  this.version,
  this.state,
  this.zipcode,
});