LangPackLanguage constructor

const LangPackLanguage({
  1. required bool official,
  2. required bool rtl,
  3. required bool beta,
  4. required String name,
  5. required String nativeName,
  6. required String langCode,
  7. String? baseLangCode,
  8. required String pluralCode,
  9. required int stringsCount,
  10. required int translatedCount,
  11. required String translationsUrl,
})

Lang Pack Language constructor.

Implementation

const LangPackLanguage({
  required this.official,
  required this.rtl,
  required this.beta,
  required this.name,
  required this.nativeName,
  required this.langCode,
  this.baseLangCode,
  required this.pluralCode,
  required this.stringsCount,
  required this.translatedCount,
  required this.translationsUrl,
}) : super._();