GeocodingResponse constructor

GeocodingResponse({
  1. required String status,
  2. String? errorMessage,
  3. required List<GeocodingResult> results,
})

Implementation

GeocodingResponse({
  required super.status,
  super.errorMessage,
  required this.results,
});