Address constructor

Address({
  1. String? postcode,
  2. String? street,
  3. String? city,
  4. String? name,
  5. String? state,
  6. String? country,
})

Implementation

Address({
  this.postcode,
  this.street,
  this.city,
  this.name,
  this.state,
  this.country,
});