Category constructor

Category({
  1. int? categoryId,
  2. String? categoryName,
})

Implementation

Category({
  this.categoryId,
  this.categoryName,
});