dart_countries_states 0.1.1 dart_countries_states: ^0.1.1 copied to clipboard
A Dart project that contains all the countries information about them. Support multiple languages.
import 'package:dart_countries_states/country_provider.dart';
import 'package:dart_countries_states/street_provider.dart';
main() {
final countryProvider = CountryProvider();
var countries = countryProvider.getCountries();
// When looking for an specific country
var country = countryProvider.getCountryByName("United States of America");
var streets = StreetProvider().getStreetsByName("ca");
}