toggleVideo method

Future<void> toggleVideo()

Toggles local video stream on and off.

Implementation

Future<void> toggleVideo() async {
  if (PlatformUtils.isMobile) {
    keepUi();
  }

  await _currentCall.value.toggleVideo();
  await _ensureNotEarpiece();
}