toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  Map<String, dynamic> json = Map();
  json["callerId"] = this.callerId;
  json["callerName"] = this.callerName;
  json["callerPic"] = this.callerPic;
  json["receiverId"] = this.receiverId;
  json["receiverName"] = this.receiverName;
  json["receiverPic"] = this.receiverPic;
  json["channelId"] = this.channelId;
  json["hasDialled"] = this.hasDialled;
  json["isvideocall"] = this.isvideocall;
  json["timeepoch"] = this.timeepoch;
  json["channelToken"] = this.channelToken;
  json["agoraAppId"] = this.agoraAppId;
  json["data"] = this.data;
  return json;
}