LanguagePackInfo.fromMap constructor

LanguagePackInfo.fromMap(
  1. Map<String, dynamic> map
)

Implementation

LanguagePackInfo.fromMap(Map<String, dynamic> map) {
  extra = map['@extra'];
  client_id = map['@client_id'];
  id = map['id'];
  base_language_pack_id = map['base_language_pack_id'];
  name = map['name'];
  native_name = map['native_name'];
  plural_code = map['plural_code'];
  is_official = map['is_official'];
  is_rtl = map['is_rtl'];
  is_beta = map['is_beta'];
  is_installed = map['is_installed'];
  total_string_count = map['total_string_count'];
  translated_string_count = map['translated_string_count'];
  local_string_count = map['local_string_count'];
  translation_url = map['translation_url'];
}