Address constructor

Address({
  1. String? street,
  2. String? city,
  3. String? state,
  4. String? countryOrRegion,
  5. String? postalCode,
})

Creates a new instance of Address.

Implementation

Address({
  this.street,
  this.city,
  this.state,
  this.countryOrRegion,
  this.postalCode,
});