notifyWithValue method

  1. @protected
void notifyWithValue(
  1. T value
)

Notify listeners with the given value

Implementation

@protected
void notifyWithValue(T value) {
  final notifier = RxZone.current.notifier;
  if (notifier != null) {
    notifier(identityHashCode(this));
    return;
  }
  _controller.add(value);
}