launchBreakoutRooms

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

This function calls updateIsBreakoutRoomsModalVisible with the negated value of isBreakoutRoomsModalVisible to toggle the modal's visibility.

Example:

val options = LaunchBreakoutRoomsOptions(
updateIsBreakoutRoomsModalVisible = { isVisible ->
// Update visibility here
},
isBreakoutRoomsModalVisible = false
)

launchBreakoutRooms(options)
// Toggles the breakout rooms modal to visible.