Category constructor

Category({
  1. String? name,
  2. int? count,
  3. String? id,
  4. String? routing,
  5. bool? currentlyRenaming,
  6. String? description,
})

Implementation

Category({
  this.name,
  this.count,
  this.id,
  this.routing,
  this.currentlyRenaming,
  this.description,
});