debounce method

Debounce debounce(
  1. Duration delay
)

Creates a Debounce instance for this function with the specified delay.

Implementation

Debounce debounce(Duration delay) {
  final Debounce debouncer = Debounce(delay);
  return debouncer;
}