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