Address constructor

Address({
  1. String? road,
  2. String? city,
  3. String? region,
  4. String? zipcode,
  5. String? nation,
})

Returns a new Address instance.

Implementation

Address({
  this.road,
  this.city,
  this.region,
  this.zipcode,
  this.nation,
});