ProxyMessageCall.fromJson constructor

ProxyMessageCall.fromJson(
  1. Map json
)

Implementation

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