independent static method

List<Country> independent()

gets all independent countries TODO: move this in as a check in Country model

Implementation

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