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