standardizedValues property

List<Country> standardizedValues

Returns a list of country enumerations excluding Country.allCountries and Country.dmcaRequest, which are supported by Twitter.

The list returned from this method will conform to the ISO Alpha2 standard.

Implementation

static List<Country> get standardizedValues => values
    .where((element) =>
        element != Country.allCountries && element != Country.dmcaRequest)
    .toList();