Category constructor

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

Implementation

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