toggleVideo method
Toggles local video stream on and off.
Implementation
Future<void> toggleVideo() async {
if (PlatformUtils.isMobile) {
keepUi();
}
await _currentCall.value.toggleVideo();
await _ensureNotEarpiece();
}
Toggles local video stream on and off.
Future<void> toggleVideo() async {
if (PlatformUtils.isMobile) {
keepUi();
}
await _currentCall.value.toggleVideo();
await _ensureNotEarpiece();
}