ProxyMessageGetPrincipalResponse.fromJson constructor

ProxyMessageGetPrincipalResponse.fromJson(
  1. Map json
)

Implementation

factory ProxyMessageGetPrincipalResponse.fromJson(Map json) {
  return ProxyMessageGetPrincipalResponse(
    response: json['response'],
    id: json['id'],
    type: json['type'],
  );
}