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