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