stopMeeting method
Implementation
Future<void> stopMeeting() async {
_resetMeetingValues();
try {
await AmazonChime.instance.stopMeeting();
} catch (e) {
logger.e('Stop meeting failed: $e');
}
}
Future<void> stopMeeting() async {
_resetMeetingValues();
try {
await AmazonChime.instance.stopMeeting();
} catch (e) {
logger.e('Stop meeting failed: $e');
}
}