DocumentLanguage constructor

const DocumentLanguage({
  1. required String code,
  2. required String name,
  3. required String flag,
  4. required String hunspellAff,
  5. required String hunspellDic,
})

Implementation

const DocumentLanguage({
  required this.code,
  required this.name,
  required this.flag,
  required this.hunspellAff,
  required this.hunspellDic,
});