Place constructor

Place({
  1. String? streetNumber,
  2. String? street,
  3. String? city,
  4. String? state,
  5. String? zipCode,
  6. String? vicinity,
  7. String? country,
  8. double? lat,
  9. double? lng,
})

Implementation

Place({
  this.streetNumber,
  this.street,
  this.city,
  this.state,
  this.zipCode,
  this.vicinity,
  this.country,
  this.lat,
  this.lng,
});