Place constructor

Place({
  1. String? name,
  2. String? formattedAddress,
  3. String? formattedAddressZipPlus4,
  4. String? streetAddress,
  5. String? streetNumber,
  6. String? streetShort,
  7. String? street,
  8. String? city,
  9. String? county,
  10. String? state,
  11. String? stateShort,
  12. String? zipCode,
  13. String? zipCodeSuffix,
  14. String? zipCodePlus4,
  15. String? vicinity,
  16. String? country,
  17. double? lat,
  18. double? lng,
})

Implementation

Place({
  this.name,
  this.formattedAddress,
  this.formattedAddressZipPlus4,
  this.streetAddress,
  this.streetNumber,
  this.streetShort,
  this.street,
  this.city,
  this.county,
  this.state,
  this.stateShort,
  this.zipCode,
  this.zipCodeSuffix,
  this.zipCodePlus4,
  this.vicinity,
  this.country,
  this.lat,
  this.lng,
});