JishoWordSense constructor

const JishoWordSense({
  1. required List<String> englishDefinitions,
  2. required List<String> partsOfSpeech,
  3. List<JishoSenseLink> links = const [],
  4. List<String> tags = const [],
  5. List<String> seeAlso = const [],
  6. List<String> antonyms = const [],
  7. List<JishoWordSource> source = const [],
  8. List<String> info = const [],
  9. List<String> restrictions = const [],
})

Implementation

const JishoWordSense({
  required this.englishDefinitions,
  required this.partsOfSpeech,
  this.links = const [],
  this.tags = const [],
  this.seeAlso = const [],
  this.antonyms = const [],
  this.source = const [],
  this.info = const [],
  this.restrictions = const [],
});