Throttler constructor

Throttler({
  1. required Duration delay,
  2. dynamic callback,
  3. Duration? max,
  4. List? args,
  5. bool noTrailing = false,
})

Implementation

Throttler(
    {required this.delay,
    this.callback,
    this.max,
    this.args,
    this.noTrailing = false});