SipMissedCallEvent.fromJson constructor Null safety
Implementation
SipMissedCallEvent.fromJson(Map<String, dynamic> json) {
this.sip = json["sip"];
this.callId = json["call_id"];
this.result = json["result"] == null
? null
: SipMissedCallEventResult.fromJson(json["result"]);
}