ProxyMessageGetPrincipalResponse.fromJson constructor
ProxyMessageGetPrincipalResponse.fromJson(
- Map json
Implementation
factory ProxyMessageGetPrincipalResponse.fromJson(Map json) {
return ProxyMessageGetPrincipalResponse()
..id = json["id"] as int
..type = json["type"] as String
..response = json["response"] as String;
}