Rady Haggag

Results 16 comments of Rady Haggag

And i have one question also, i want to know if the meeting is closed suddenly not closed by the end call button or the time of the meeting finished,...

No when i start a meeting by this way on both sides ConferenceClient.instance.createCallSession(cubeUser.id!).then((session) { session.joinDialog("66321eee49a28d002e249131", (publishers) async { VideoCallNavigationManager.instance.initVideoCallView( ConversationsCallViewParams( currentUser: cubeUser, callSession: session, meetingId: "66321eee49a28d002e249131", isIncoming: !AppProvider().getIsUserTutorType, opponents: [...

I want to register all errors which appear on the call session and also i want to know if the meeting is dropped on any user side, i want to...

_muteMic() { setState(() { _isMicMute = !_isMicMute; _callSession.setMicrophoneMute(_isMicMute); _callManager.muteMic(_meetingId, _isMicMute); final audioTrack = _callSession.localStream?.getAudioTracks().firstOrNull; if (audioTrack != null) { Helper.setMicrophoneMute( _isMicMute, audioTrack, ); } notifyParticipantsMediaUpdated(); }); The problem occurred only...

@TatankaConCube Please, this is urgent bug on our app so if you have any idea tell me. the above code is for mute the mic.

> why do you use Helper? i used it because it wasn't working before it so i added it as a second method for ensure from the mute > can...