Category constructor

Category({
  1. required String label,
  2. String? term,
  3. String? scheme,
  4. String? value,
})

Creates a new Category object

Implementation

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