LanguagePackInfo constructor

LanguagePackInfo({
  1. String? extra,
  2. int? client_id,
  3. string? id,
  4. string? base_language_pack_id,
  5. string? name,
  6. string? native_name,
  7. string? plural_code,
  8. Bool? is_official,
  9. Bool? is_rtl,
  10. Bool? is_beta,
  11. Bool? is_installed,
  12. int32? total_string_count,
  13. int32? translated_string_count,
  14. int32? local_string_count,
  15. string? translation_url,
})

Implementation

LanguagePackInfo({
  super.extra,
  super.client_id,
  this.id,
  this.base_language_pack_id,
  this.name,
  this.native_name,
  this.plural_code,
  this.is_official,
  this.is_rtl,
  this.is_beta,
  this.is_installed,
  this.total_string_count,
  this.translated_string_count,
  this.local_string_count,
  this.translation_url,
});