searchByLocation method
Implementation
Future<GeocodingResponse> searchByLocation(
Location location, {
String? language,
List<String> resultType = const [],
List<String> locationType = const [],
}) async {
final url = buildUrl(
location: location,
language: language,
resultType: resultType,
locationType: locationType,
);
return _decode(await doGet(url, headers: apiHeaders));
}