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