dispose method

void dispose()

Stops the timer permanently. The TokenRefreshTimer cannot be restarted after this.

Implementation

void dispose() {
  if (_disposed) return;
  _disposed = true;
  stop();
}