builtIns constant

List<FeedbackCategoryItem> const builtIns

The default built-in category list.

Implementation

static const List<FeedbackCategoryItem> builtIns = [
  FeedbackCategoryItem(id: 'bug', label: 'Bug'),
  FeedbackCategoryItem(id: 'suggestion', label: 'Suggestion'),
  FeedbackCategoryItem(id: 'ui', label: 'UI/UX'),
  FeedbackCategoryItem(id: 'performance', label: 'Performance'),
  FeedbackCategoryItem(id: 'translation', label: 'Translation'),
  FeedbackCategoryItem(id: 'featureRequest', label: 'Feature Request'),
  FeedbackCategoryItem(id: 'accessibility', label: 'Accessibility'),
  FeedbackCategoryItem(id: 'other', label: 'Other'),
];