CallInfo constructor

CallInfo({
  1. required String callId,
  2. required String currentAccId,
  3. UserInfo? callerInfo,
  4. UserInfo? calleeInfo,
  5. required CallType callType,
  6. SignalInfo? signalInfo,
  7. RtcInfo? rtcInfo,
  8. required CallEngineStatus callStatus,
})

Implementation

CallInfo({
  required this.callId,
  required this.currentAccId,
  this.callerInfo,
  this.calleeInfo,
  required this.callType,
  this.signalInfo,
  this.rtcInfo,
  required this.callStatus,
});