ProxyMessageQueryResponse.fromJson constructor

ProxyMessageQueryResponse.fromJson(
  1. Map json
)

Implementation

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