Debouncer constructor

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

Implementation

Debouncer(
    {required this.delay, this.callback, this.args, this.atBegin = false});