debounce method

void debounce(
  1. VoidCallback callback
)

Implementation

void debounce(VoidCallback callback) {
  this._callback = callback;

  this.cancel();
  _timer = new Timer(delay, this.flush);
}