independent static method

List<Country> independent()

Implementation

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