startSingleCall method
Implementation
Future<String> startSingleCall(
String userId, {
String? inviteMessage,
ChatCallKitCallType type = ChatCallKitCallType.audio_1v1,
Map<String, String>? ext,
}) {
tools.log("ChatCallKitManagerImpl: startSingleCall called, userId: $userId, type: $type, ext: $ext, inviteMessage: $inviteMessage");
return _chat.startSingleCall(
userId,
inviteMessage: inviteMessage,
type: type,
ext: ext,
);
}