PartOfSpeech constructor

PartOfSpeech({
  1. String? aspect,
  2. String? case_,
  3. String? form,
  4. String? gender,
  5. String? mood,
  6. String? number,
  7. String? person,
  8. String? proper,
  9. String? reciprocity,
  10. String? tag,
  11. String? tense,
  12. String? voice,
})

Implementation

PartOfSpeech({
  this.aspect,
  this.case_,
  this.form,
  this.gender,
  this.mood,
  this.number,
  this.person,
  this.proper,
  this.reciprocity,
  this.tag,
  this.tense,
  this.voice,
});