GetJsonString.fromMap constructor
Implementation
GetJsonString.fromMap(Map<String, dynamic> map) {
extra = map['@extra'];
client_id = map['@client_id'];
if (map['json_value'] != null) {
json_value = TdApiMap.fromMap(map['json_value']) as JsonValue;
}
}