notifyCallback method

void notifyCallback(
  1. T value
)

Implementation

void notifyCallback(T value) {
  if (!isActive || !filterPass(value)) {
    return;
  }

  _callback?.call(value);

  if (closePass(value)) {
    invalidate();
  }
}