GeocodingResponse constructor
GeocodingResponse({
- required String status,
- String? errorMessage,
- required List<
GeocodingResult> results,
Implementation
GeocodingResponse({
required String status,
String? errorMessage,
required this.results,
}) : super(
status: status,
errorMessage: errorMessage,
);