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