Debouncer constructor

Debouncer({
  1. int? milliseconds,
})

Creates a Debouncer that executes a function after a certain length of time in milliseconds

Implementation

Debouncer({this.milliseconds});