stopLocalVideo method

Future<void> stopLocalVideo()

Stops the local video.

Implementation

Future<void> stopLocalVideo() async {
  try {
    await _coordinator.hostApi.stopLocalVideo();
  } on PlatformException catch (e) {
    throw ChimeDeviceException('Failed to stop local video', e.message);
  }
}