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