ZipcodeAddressModel constructor

ZipcodeAddressModel({
  1. String? country,
  2. String? state,
  3. String? city,
  4. String? district,
  5. String? streetName,
  6. String? houseNumber,
  7. String? latitude,
  8. String? longitude,
})

Implementation

ZipcodeAddressModel({
  this.country,
  this.state,
  this.city,
  this.district,
  this.streetName,
  this.houseNumber,
  this.latitude,
  this.longitude,
});