Place constructor

const Place({
  1. required String name,
  2. String? description,
  3. required String address,
  4. required LatLng location,
  5. String? iconImage,
})

Creates a Place instance with the specified details.

Implementation

const Place({
  required this.name,
  this.description,
  required this.address,
  required this.location,
  this.iconImage,
});