Toggles the visibility of the co-host modal.

This method is used to show or hide the co-host modal based on the current visibility state.

The options object containing necessary variables and functions.

Function to update the visibility state of the co-host modal.

Current visibility state of the co-host modal.

const options: LaunchCoHostOptions = {
updateIsCoHostModalVisible: (isVisible) => {
console.log('Co-Host Modal is now:', isVisible ? 'Visible' : 'Hidden');
},
isCoHostModalVisible: false,
};

const launchCoHostService = new launchCoHost();
launchCoHostService.launchCoHost(options);

Constructors

Methods

Constructors

Methods