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