GeoCodingResponse constructor

GeoCodingResponse({
  1. required int? placeId,
  2. required String lat,
  3. required String lng,
  4. required String displayName,
  5. required String name,
  6. required int placeRank,
  7. required String category,
  8. required String type,
  9. required double importance,
  10. required String osmType,
  11. required int osmId,
})

Implementation

GeoCodingResponse({
  required this.placeId,
  required this.lat,
  required this.lng,
  required this.displayName,
  required this.name,
  required this.placeRank,
  required this.category,
  required this.type,
  required this.importance,
  required this.osmType,
  required this.osmId,
});