ProxyMessageQueryResponse.fromJson constructor
ProxyMessageQueryResponse.fromJson(
- Map json
Implementation
factory ProxyMessageQueryResponse.fromJson(Map json) {
return ProxyMessageQueryResponse()
..id = json["id"]
..type = json["type"]
..error = json["error"]
..response = json["response"]
..args = json["args"];
}