startVideoRecorder method

dynamic startVideoRecorder()

Implementation

startVideoRecorder() async {
  await _controller!.prepareForVideoRecording();
  await _controller!.startVideoRecording();
  setState(() {
    recording = true;
  });
}