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