startVideoRecording method
Starts a video recording.
This method is deprecated in favour of startVideoCapturing.
Implementation
@override
Future<void> startVideoRecording(
int cameraId, {
Duration? maxVideoDuration,
}) async {
// Ignore maxVideoDuration, as it is unimplemented and deprecated.
return startVideoCapturing(VideoCaptureOptions(cameraId));
}