stopLocalRecording method

Future<void> stopLocalRecording()

Implementation

Future<void> stopLocalRecording() async {
  if (_isNeedDisposed) return;
  await _initPlayer.future;
  await _livePlayerApi.stopLocalRecording();
}