getInstitutionByCountry method

Future<List> getInstitutionByCountry(
  1. String countryCode
)

Implementation

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

  return response;
}