getAllCountries function

Future<List<Country>> getAllCountries()

Get world wide countries list.

Implementation

Future<List<Country>> getAllCountries() {
  return _loadCountries();
}