getStream method

Stream<E> getStream(
  1. K key
)

Implementation

Stream<E> getStream(final K key) {
  final ctrl = _controllers[key];
  if (ctrl == null) {
    throw StateError('No such key: $key');
  }
  return ctrl.stream;
}