startVideoRecording method

Future<void> startVideoRecording()

Implementation

Future<void> startVideoRecording() async {
  await _cameraController!.stopImageStream();
  return _cameraController!.startVideoRecording();
}