dispose method

void dispose()

Implementation

void dispose() {
  for (final stream in _streams.values) {
    stream.dispose();
  }
}