Category constructor

Category({
  1. int? id,
  2. String? name,
  3. dynamic code,
  4. String? description,
  5. String? imageKey,
  6. String? baseUrl,
  7. int? productCount,
})

Implementation

Category({
  this.id,
  this.name,
  this.code,
  this.description,
  this.imageKey,
  this.baseUrl,
  this.productCount,
});