NECallInfo constructor

NECallInfo({
  1. required String callId,
  2. required String currentAccId,
  3. NEUserInfo? callerInfo,
  4. NEUserInfo? calleeInfo,
  5. required NECallType callType,
  6. NESignalInfo? signalInfo,
  7. NERtcInfo? rtcInfo,
  8. required NECallEngineStatus callStatus,
})

Implementation

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