AddressDetail constructor

AddressDetail({
  1. String? countryCode,
  2. String? country,
  3. String? adminArea,
  4. String? subAdminArea,
  5. String? locality,
  6. String? subLocality,
  7. String? thoroughfare,
  8. String? postalCode,
  9. String? streetNumber,
  10. String? tertiaryAdminArea,
})

Implementation

AddressDetail({
  this.countryCode,
  this.country,
  this.adminArea,
  this.subAdminArea,
  this.locality,
  this.subLocality,
  this.thoroughfare,
  this.postalCode,
  this.streetNumber,
  this.tertiaryAdminArea,
});