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;
  // Use new ZenLogger.logRxTracking method
  ZenLogger.logRxTracking('Tracker set');
}