getInstitutionByCountry method
Implementation
Future<List> getInstitutionByCountry(String countryCode) async {
final response = await requestHandler.get(
"institutions/",
queryParameters: {"country": countryCode }
);
return response;
}