Category constructor

const Category({
  1. String? scheme,
  2. String? label,
  3. String? value,
})

Implementation

const Category({
  this.scheme,
  this.label,
  this.value,
});