Place constructor

Place({
  1. String? streetNumber,
  2. String? street,
  3. String? city,
  4. String? zipCode,
  5. String? state,
  6. String? country,
  7. String? formattedAddress,
})

Implementation

Place({
  this.streetNumber,
  this.street,
  this.city,
  this.zipCode,
  this.state,
  this.country,
  this.formattedAddress,
});