Skip to content

Instantly share code, notes, and snippets.

@hitherejoe
Created December 16, 2018 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hitherejoe/6efc2fec4854ba078bca6a81e47528ff to your computer and use it in GitHub Desktop.
Save hitherejoe/6efc2fec4854ba078bca6a81e47528ff to your computer and use it in GitHub Desktop.
class Country {
const Country({this.country, this.label});
final String country;
final String label;
}
const List<Country> countries = const <Country>[
const Country(country: 'United Kingdom', label: "UK"),
const Country(country: 'United States', label: "USA"),
const Country(country: 'Other', label: "Other"),
const Country(country: 'All', label: "All"),
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment