Place constructor

Place({
  1. required double latitude,
  2. required double longitude,
  3. required String id,
  4. String? name,
  5. String? address,
})

Implementation

Place({
  required this.latitude,
  required this.longitude,
  required this.id,
  this.name,
  this.address,
});