DictionaryEntry constructor

const DictionaryEntry({
  1. required String objectID,
  2. required SupportedLanguage language,
  3. String? word,
  4. List<String>? words,
  5. List<String>? decomposition,
  6. DictionaryEntryState? state,
  7. Map<String, dynamic> additionalProperties = const {},
})

Returns a new DictionaryEntry instance.

Implementation

const DictionaryEntry({
  required this.objectID,
  required this.language,
  this.word,
  this.words,
  this.decomposition,
  this.state,
  Map<String, dynamic> additionalProperties = const {},
}) : super(additionalProperties);