stopRecording method

Future<bool?> stopRecording()

Returns true if media is stop recording.

Implementation

Future<bool?> stopRecording() async {
  _throwIfNotInitialized('stopRecording');
  return await vlcPlayerPlatform.stopRecording(_viewId);
}