Place constructor

const Place(
  1. LatLng latLng,
  2. String address,
  3. String? title
)

Implementation

const Place(
  this.latLng,
  this.address,
  this.title,
);