allFIFA static method

List<String?> allFIFA()

A list of FIFA codes for every country

Implementation

static List<String?> allFIFA() {
  return allCountries.map((country) => country.fifa).toList();
}