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