LanguagePackStrings.fromJson constructor
Parse from a json
Implementation
factory LanguagePackStrings.fromJson(Map<String, dynamic> json) => LanguagePackStrings(
strings: List<LanguagePackString>.from((json['strings'] ?? []).map((item) => LanguagePackString.fromJson(item)).toList()),
extra: json['@extra'],
clientId: json['@client_id'],
);