OptionValueString.fromJson constructor

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

Parse from a json

Implementation

factory OptionValueString.fromJson(Map<String, dynamic> json) => OptionValueString(
  value: json['value'],
  extra: json['@extra'],
  clientId: json['@client_id'],
);