widgets/autocomplete/debounce library
Functions
-
debounce<
S, T> (Debounceable< S?, T> function, {int duration = 300}) → Debounceable<S, T> - Returns a new function that is a debounced version of the given function.
Typedefs
-
Debounceable<
S, T> = Future< S?> Function(T parameter)