LanguagePackString.fromJson constructor
Parse from a json
Implementation
factory LanguagePackString.fromJson(Map<String, dynamic> json) => LanguagePackString(
key: json['key'],
value: json['value'] == null ? null : LanguagePackStringValue.fromJson(json['value']),
);