dispose method

  1. @mustCallSuper
void dispose ()
@mustCallSuper

Closes the underlying stream. Inheriting classes that overload this method must call super.dispose().

Implementation

@mustCallSuper
void dispose() {
  _subject.close();
}