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