SenseElement constructor

SenseElement(
  1. Set<String>? kanjiRestrictions,
  2. Set<String>? readingRestrictions,
  3. Set<String>? crossReferences,
  4. Set<String>? antonyms,
  5. Set<String>? pos,
  6. Set<String>? field,
  7. Set<String>? misc,
  8. Set<String>? information,
  9. Set<String>? lSource,
  10. Set<String>? dial,
  11. Set<String> gloss,
)

Implementation

SenseElement(
    this.kanjiRestrictions,
    this.readingRestrictions,
    this.crossReferences,
    this.antonyms,
    Set<String>? pos,
    Set<String>? field,
    Set<String>? misc,
    this.information,
    Set<String>? lSource,
    Set<String>? dial,
    Set<String> gloss,
    )
    : partOfSpeeches = _partOfSpeeches(pos,),
      fields = _fields(field,),
      miscellaneous = _miscellaneous(misc,),
      dialects = _dialects(dial,),
      languageSources = _lSource(lSource,),
      glossaries = _glossaries(gloss,);