fitSelectUpdate<T> method

void fitSelectUpdate<T>(
  1. String key,
  2. T value
)

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);
  }
}