Category constructor

Category({
  1. required String categoryId,
  2. required String group,
  3. required List<String> hierarchy,
})

Implementation

Category({
  required this.categoryId,
  required this.group,
  required this.hierarchy,
});