stopVideoRecording method
Stops native video recording and returns the saved file path.
Implementation
@experimental
Future<String?> stopVideoRecording() {
if (!_isRunning) throw StateError('Camera is not running.');
return NexoraSdkPlatform.instance.stopVideoRecording();
}