cancel method

void cancel()

Cancels any pending debounced action.

Implementation

void cancel() {
  timer?.cancel();
  timer = null;
}