Place constructor

Place({
  1. required int placeId,
  2. required String osmType,
  3. required int osmId,
  4. required BoundingBox boundingbox,
  5. required LatLng position,
  6. required String displayName,
  7. required String category,
  8. required String type,
  9. required Address address,
})

Implementation

Place({
  required this.placeId,
  required this.osmType,
  required this.osmId,
  required this.boundingbox,
  required this.position,
  required this.displayName,
  required this.category,
  required this.type,
  required this.address,
});