ProxyMessageStatus.fromJson constructor

ProxyMessageStatus.fromJson(
  1. Map json
)

Implementation

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