LanguagePackStringValuePluralized.fromJson constructor

LanguagePackStringValuePluralized.fromJson(
  1. Map<String, dynamic> json
)

Parse from a json

Implementation

factory LanguagePackStringValuePluralized.fromJson(
        Map<String, dynamic> json) =>
    LanguagePackStringValuePluralized(
      zeroValue: json['zero_value'],
      oneValue: json['one_value'],
      twoValue: json['two_value'],
      fewValue: json['few_value'],
      manyValue: json['many_value'],
      otherValue: json['other_value'],
      extra: json['@extra'],
      clientId: json['@client_id'],
    );