track static method

void track(
  1. ValueNotifier value
)

Track an Rx value, called by the Rx.call() operator

Implementation

static void track(ValueNotifier value) {
  if (_tracker != null) {
    ZenLogger.logRxTracking('Tracking ${value.runtimeType}');
    _tracker!(value);
  }
  // No "else" logging needed - this would create noise even when not tracking
}