LanguagePackInfo constructor

LanguagePackInfo({
  1. required String id,
  2. required String baseLanguagePackId,
  3. required String name,
  4. required String nativeName,
  5. required String pluralCode,
  6. required bool isOfficial,
  7. required bool isRtl,
  8. required bool isBeta,
  9. required bool isInstalled,
  10. required int totalStringCount,
  11. required int translatedStringCount,
  12. required int localStringCount,
  13. required String translationUrl,
})

Implementation

LanguagePackInfo({
  required this.id,
  required this.baseLanguagePackId,
  required this.name,
  required this.nativeName,
  required this.pluralCode,
  required this.isOfficial,
  required this.isRtl,
  required this.isBeta,
  required this.isInstalled,
  required this.totalStringCount,
  required this.translatedStringCount,
  required this.localStringCount,
  required this.translationUrl,
});