country 0.0.1 country: ^0.0.1 copied to clipboard
Generated countries with country_gen
country #
Generated countries with country_gen. This plugin is using countries to generate dart class.
Getting Started #
Install #
Add the following lines in your pubspec.yaml file
dependencies:
country: ^latest_version
API #
All country
void printAllCountry() {
for (final country in Countries.values) {
print(country);
}
}
Short name by locale
String getCountryNameByLocale(Country country, Locale locale) =>
country.isoShortNameByLanguage[const Locale('en', 'US').languageCode]!;