ProxyMessageQuery.fromJson constructor

ProxyMessageQuery.fromJson(
  1. Map json
)

Implementation

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