interruptionEventStream property
      
      Stream<InterruptionEvent> 
      get
      interruptionEventStream
      
    
    
Stream of interruption events
Implementation
Stream<InterruptionEvent> get interruptionEventStream {
  if (_interruptionEventStream == null) {
    // Return an empty stream if not initialized
    return Stream<InterruptionEvent>.empty();
  }
  return _interruptionEventStream!;
}