PhysicalAddress constructor

PhysicalAddress({
  1. String? country,
  2. String? id,
  3. String? city,
  4. String? countrySubDivisionCode,
  5. String? lat,
  6. String? line1,
  7. String? line2,
  8. String? line3,
  9. String? line4,
  10. String? line5,
  11. String? long,
  12. String? postalCode,
})

Implementation

PhysicalAddress({
  this.country, this.id, this.city, this.countrySubDivisionCode, this.lat,
  this.line1, this.line2, this.line3, this.line4, this.line5, this.long,
  this.postalCode
});