meetingStillThere function
- {required MeetingStillThereOptions options}
Updates the visibility of the "still there?" modal in a meeting.
This function takes an instance of MeetingStillThereOptions containing
the updateIsConfirmHereModalVisible
function, which updates the visibility of the confirmation modal.
Example usage:
await meetingStillThere(
options: MeetingStillThereOptions(
updateIsConfirmHereModalVisible: (isVisible) => print("Modal visibility: $isVisible"),
),
);
// Output:
// "Modal visibility: true"
Implementation
Future<void> meetingStillThere({
required MeetingStillThereOptions options,
}) async {
// Update the visibility of the "still there?" modal
options.updateIsConfirmHereModalVisible(true);
}