Languages constructor

const Languages({
  1. required DictionaryLanguage? plurals,
  2. required DictionaryLanguage? stopwords,
  3. required DictionaryLanguage? compounds,
})

Returns a new Languages instance.

Implementation

const Languages({
  required this.plurals,
  required this.stopwords,
  required this.compounds,
});