Category constructor

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

Implementation

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