SipMissedCallEventResult.fromJson constructor

SipMissedCallEventResult.fromJson(
  1. Map<String, dynamic> json
)

Implementation

SipMissedCallEventResult.fromJson(Map<String, dynamic> json) {
  this.event = json["event"];
  this.caller = json["caller"];
  this.displayname = json["displayname"];
  this.callee = json["callee"];
}