disableVideo method

  1. @override
Future<void> disableVideo()

Disables the video module.

You can call this method before joining a channel or during a call. If you call this method before joining a channel, the service starts in audio mode. If you call this method during a video call, the video mode switches to the audio mode.

Note

Implementation

@override
Future<void> disableVideo() {
  return _invokeMethod('disableVideo');
}