all static method

List<Country> all()

gets all the countries as a List of Country

Implementation

static List<Country> all() {
  return _countryData.countries;
}