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