getCountryAvailable method

Future<List<Country>> getCountryAvailable()

Implementation

Future<List<Country>> getCountryAvailable() async {
  NetworkResponse response = await _api.getCountryAvailable();
  return response.data ?? [];
}