Place constructor

const Place({
  1. String? placeId,
  2. List<AddressComponent>? addressComponents,
  3. String? formattedAddress,
  4. String? formattedPhoneNumber,
  5. Geometry? geometry,
  6. String? name,
})

Implementation

const Place({
  this.placeId,
  this.addressComponents,
  this.formattedAddress,
  this.formattedPhoneNumber,
  this.geometry,
  this.name,
});