setTracker static method

void setTracker(
  1. void trackFunc(
    1. ValueNotifier
    )
)

Set the current tracker, called by Obx before building

Implementation

static void setTracker(void Function(ValueNotifier) trackFunc) {
  _tracker = trackFunc;
  if (ZenConfig.enableDebugLogs) {
    ZenLogger.logDebug("RxTracking: Tracker set");
  }
}