Address constructor

Address({
  1. String? country,
  2. String? postalCode,
  3. String? addressLine1,
  4. String? addressLine2,
  5. String? addressLine3,
  6. String? administrativeDistrictLevel1,
  7. String? locality,
  8. String? sublocality,
})

Implementation

Address(
    {this.country,
    this.postalCode,
    this.addressLine1,
    this.addressLine2,
    this.addressLine3,
    this.administrativeDistrictLevel1,
    this.locality,
    this.sublocality});