JsonValueString.fromJson constructor
Parse from a json
Implementation
factory JsonValueString.fromJson(Map<String, dynamic> json) =>
JsonValueString(
value: json['value'],
extra: json['@extra'],
clientId: json['@client_id'],
);