Call.fromJson constructor

Call.fromJson(
  1. dynamic json
)

Implementation

Call.fromJson(json) {
  this.callerId = json["callerId"];
  this.callerName = json["callerName"];
  this.callerPic = json["callerPic"];
  this.receiverId = json["receiverId"];
  this.receiverName = json["receiverName"];
  this.receiverPic = json["receiverPic"];
  this.channelId = json["channelId"];
  this.hasDialled = json["hasDialled"];
  this.isvideocall = json["isvideocall"];
  this.timeepoch = json["timeepoch"];
  this.channelToken = json["channelToken"];
  this.agoraAppId = json["agoraAppId"];
  this.data = json["data"];
}