Monitor when participants turn their camera on or off:
CometChatCalls.addEventListener("onParticipantVideoPaused", (participant) => { console.log(`${participant.name} turned off their camera`);});CometChatCalls.addEventListener("onParticipantVideoResumed", (participant) => { console.log(`${participant.name} turned on their camera`);});