Class LaunchBreakoutRooms

Launches the breakout rooms by toggling the visibility of the breakout rooms modal.

This method is used to show or hide the breakout rooms modal based on the current visibility state.

The options object containing necessary variables and functions.

Function to update the visibility state of the breakout rooms modal.

Current visibility state of the breakout rooms modal.

const options: LaunchBreakoutRoomsOptions = {
updateIsBreakoutRoomsModalVisible: (isVisible) => {
console.log('Breakout Rooms Modal is now:', isVisible ? 'Visible' : 'Hidden');
},
isBreakoutRoomsModalVisible: false,
};

const launchBreakoutRoomsService = new LaunchBreakoutRooms();
launchBreakoutRoomsService.launchBreakoutRooms(options);

Constructors

Methods

Constructors

Methods