stopVideoRecording method

  1. @experimental
Future<String?> stopVideoRecording()

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();
}