SipProceedingEvent.fromJson constructor

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

Implementation

SipProceedingEvent.fromJson(Map<String, dynamic> json) {
  this.sip = json["sip"];
  this.callId = json["call_id"];
  this.result = json["result"] == null ? null : SipProceedingEventResult.fromJson(json["result"]);
}