Debouncer constructor

Debouncer(
  1. Duration delay,
  2. dynamic callback,
  3. List? args, [
  4. bool? atBegin = false,
])

Implementation

Debouncer(this.delay, this.callback, this.args, [this.atBegin = false]);