Place constructor

Place({
  1. String? languageCode,
  2. String? name,
  3. String? placeId,
})

Implementation

Place({
  this.languageCode,
  this.name,
  this.placeId,
});