static List<Country> independent() { List<Country> countries = _countryData.countries.where((c) => c.independent == true).toList(); return countries; }