onDeactivate method

  1. @mustCallSuper
void onDeactivate()
inherited

Called when Bloc has no more listeners and stream is being closed

Implementation

@mustCallSuper
void onDeactivate() {
  notifyListeners(BlocEventType.streamClosed);
  _monitor.onStreamDispose(this);
  _stream!.close();
  _stream = null;
}