cancel method

void cancel()

Cancels any pending throttle

Implementation

void cancel() {
  _timer?.cancel();
  _timer = null;
  _isThrottled = false;
}