getPhoneAvailable method

Future<List<Country>> getPhoneAvailable()

Implementation

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