SipTransferCallEventResult.fromJson constructor Null safety

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

Implementation

SipTransferCallEventResult.fromJson(Map<String, dynamic> json) {
  this.event = json["event"];
  this.referId = json["refer_id"];
  this.referTo = json["refer_to"];
  this.referredBy = json["referred_by"];
  this.replaces = json["replaces"];
  this.headers = json["headers"];
}