Category constructor

Category({
  1. String? category,
  2. String? experiencePoints,
  3. String? kind,
})

Implementation

Category({
  this.category,
  this.experiencePoints,
  this.kind,
});