stopBackgroundProcessing static method

void stopBackgroundProcessing()

Stops automatic processing

Implementation

static void stopBackgroundProcessing() {
  _processingTimer?.cancel();
  _processingTimer = null;
  log('Background processing stopped');
}