Category constructor

const Category({
  1. required String name,
  2. required Set<String> values,
})

Implementation

const Category({
  required this.name,
  required this.values,
});