stopRecording method

Future<bool?> stopRecording()

Returns true if media is stop recording.

Implementation

Future<bool?> stopRecording() async {
  _throwIfNotInitialized('stopRecording');

  return vlcPlayerPlatform.stopRecording(_viewId);
}