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