stopMeeting method

Future<void> stopMeeting()

Stops the current meeting session.

Implementation

Future<void> stopMeeting() async {
  try {
    await _coordinator.hostApi.stopMeeting();
  } on PlatformException catch (e) {
    throw ChimeMeetingException('Failed to stop meeting', e.message);
  }
}