CategoryInfo constructor

const CategoryInfo({
  1. required String type,
  2. required String writtenForm,
  3. String? reference,
  4. String? allomorph,
})

Implementation

const CategoryInfo({
  required this.type,
  required this.writtenForm,
  this.reference,
  this.allomorph,
});