execute method
Encode json object, send it to td json client, and then decode the result to json object
Implementation
Map<String, dynamic> execute(Map<String, dynamic> obj) {
String s = _rawClient.td_json_client_execute(clientId!, json.encode(obj));
return json.decode(s);
}