Class LaunchParticipants

Toggles the visibility of the participants modal.

This method checks the current visibility state of the participants modal and updates it accordingly. If the modal is currently visible, it will be hidden. If it is hidden, it will be displayed.

The options for toggling the participants modal.

Function to update the visibility state of the participants modal.

Current visibility state of the participants modal.

const launchParticipantsService = new LaunchParticipants();
launchParticipantsService.launchParticipants({
updateIsParticipantsModalVisible: (isVisible) => {
console.log(`Participants modal is now ${isVisible ? 'visible' : 'hidden'}`);
},
isParticipantsModalVisible: false,
});

Constructors

Methods

Constructors

Methods