countriesCount static method

int countriesCount()

Gets the total count of countries.

Implementation

static int countriesCount() {
  final countries = loadCountries();
  return countries.length;
}