reset method

void reset()

Completely clears all internal state.

Implementation

void reset() {
  _queue.clear();
  _processingIndex = 0;
  onProcessingIndexChanged?.call(_processingIndex);
  _updateStatus(ProcessingStatus.idle);
  _notifySentencesChanged();
}