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