dispose method

void dispose()

Cancel the timer which checks the queued actions to send

This will not clear the queue.

Implementation

void dispose() {
  pingTimer?.cancel();
  dequeueTimer.cancel();
  log.clearListeners();
}