Category constructor

Category({
  1. List<CategoryItems>? items,
  2. String? kind,
})

Implementation

Category({
  this.items,
  this.kind,
});