country 0.0.3 country: ^0.0.3 copied to clipboard
Generated country class with country_generator using countries.
country #
Generated country class with country_generator using countries. 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);
}
}