Category constructor

Category({
  1. String? cname,
  2. String? cpic,
  3. List<Subcategory>? subcategories,
  4. int? cid,
})

Implementation

Category({
  this.cname,
  this.cpic,
  this.subcategories,
  this.cid,
});