-
-
Save hitherejoe/4f9b9e994c3855c94095997aed900be9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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