Category constructor

Category({
  1. int? id,
  2. String? name,
  3. String? content,
  4. String? icon,
  5. String? slug,
  6. String? status,
})

Implementation

Category(
    {this.id, this.name, this.content, this.icon, this.slug, this.status});