add method
void
add(
- K id,
- T value
Add a new value to the ValueStreamController for id
.
Implementation
void add(K id, T value) {
_controllers[id]?.add(value);
}
Add a new value to the ValueStreamController for id
.
void add(K id, T value) {
_controllers[id]?.add(value);
}