Skip to content

Instantly share code, notes, and snippets.

@hitherejoe
Created December 16, 2018 18:59
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/4f9b9e994c3855c94095997aed900be9 to your computer and use it in GitHub Desktop.
Save hitherejoe/4f9b9e994c3855c94095997aed900be9 to your computer and use it in GitHub Desktop.
class Category {
const Category({this.documentName, this.label});
final String documentName;
final String label;
}
const List<Category> categories = const <Category>[
const Category(
documentName: Keys.DOCUMENT_ANIMAL_RIGHTS,
label: Strings.label_animal_rights),
const Category(
documentName: Keys.DOCUMENT_SAB_GROUPS, label: Strings.label_hunt_sabs),
const Category(
documentName: Keys.DOCUMENT_SHELTERS,
label: Strings.label_shelters),
const Category(
documentName: Keys.DOCUMENT_GLOBAL_ORGANISATIONS,
label: Strings.label_global_orgs),
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment