stop method

Future<void> stop()

Stop all processing

Implementation

Future<void> stop() async {
  await _stopProcessingInternal();
  _sourceStream = null;
  _currentFrame = null;
  debugPrint('BackgroundProcessorService: Stopped');
}