debounce method
Implementation
void debounce(VoidCallback callback) {
this._callback = callback;
this.cancel();
_timer = new Timer(delay, this.flush);
}
void debounce(VoidCallback callback) {
this._callback = callback;
this.cancel();
_timer = new Timer(delay, this.flush);
}