runNow method

Future<void> runNow()

Triggers an immediate token check outside the regular periodic schedule.

Useful when the app returns from background and you want to proactively refresh without waiting for the next tick. The periodic schedule continues unaffected. A no-op if the timer has been disposed.

Implementation

Future<void> runNow() {
  if (_disposed) return Future.value();
  return _tick();
}