Place constructor
Place({
- String? name,
- String? formattedAddress,
- String? formattedAddressZipPlus4,
- String? streetAddress,
- String? streetNumber,
- String? streetShort,
- String? street,
- String? city,
- String? county,
- String? state,
- String? stateShort,
- String? zipCode,
- String? zipCodeSuffix,
- String? zipCodePlus4,
- String? vicinity,
- String? country,
- double? lat,
- 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,
});