fitSelectUpdate<T> method
Update specific selector
Implementation
void fitSelectUpdate<T>(String key, T value) {
if (_isDisposed) return;
final controller = _selectorControllers[key];
if (controller != null && !controller.isClosed) {
(controller as StreamController<T>).add(value);
}
}