ProxyMessageGetPrincipalResponse.fromJson constructor

ProxyMessageGetPrincipalResponse.fromJson(
  1. 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;
}