Address constructor

Address({
  1. String? address,
  2. String? postcode,
  3. String? region,
  4. String? town,
})

Implementation

Address({
  this.address,
  this.postcode,
  this.region,
  this.town,
});