values property

List<CountryCode> values

List of all ISO-assigned country codes

Implementation

static List<CountryCode> get values {
  if (_userValues.isNotEmpty) {
    return List<CountryCode>.unmodifiable(_values + _userValues);
  }

  return List<CountryCode>.unmodifiable(_values);
}