startLocalVideo method

Future<void> startLocalVideo()

Starts the local video.

Implementation

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