ChatCallKitCall constructor

ChatCallKitCall({
  1. required String callId,
  2. required ChatCallKitCallType callType,
  3. required bool isCaller,
  4. required String channel,
  5. String? remoteUserAccount,
  6. Map<int, String>? allUserAccounts,
  7. String? remoteCallDevId,
  8. int? agoraUid,
  9. Map<String, String>? ext,
})

Implementation

ChatCallKitCall({
  required this.callId,
  required this.callType,
  required this.isCaller,
  required this.channel,
  this.remoteUserAccount,
  Map<int, String>? allUserAccounts,
  this.remoteCallDevId,
  this.agoraUid,
  this.ext,
}) : allUserAccounts = allUserAccounts ?? {};