DebounceInvoker constructor

DebounceInvoker(
  1. Function _fn,
  2. Duration _wait, {
  3. bool leading = false,
  4. bool trailing = true,
  5. Duration? maxWait,
})

Implementation

DebounceInvoker(
    this._fn,
    this._wait, {
      this.leading = false,
      this.trailing = true,
      this.maxWait,
    });