core/debouncer library
Classes
-
DebouncePool<
T> - Maintains lazily created SmartDebouncer instances grouped by string keys.
-
SmartDebouncer<
T> - A smart debouncer that coalesces bursts of calls into deterministic actions.
Typedefs
-
Debouncer<
T> = SmartDebouncer< T> - A convenient alias for SmartDebouncer that exposes the same API with a shorter, expressive name for application code.
- VoidCallback = void Function()