menu
ensemble package
documentation
util/debouncer.dart
Debouncer
run method
run method
dark_mode
light_mode
run
method
void
run
(
VoidCallback
action
)
Implementation
void run(VoidCallback action) { _timer?.cancel(); _timer = Timer(delay, action); }
ensemble package
documentation
util/debouncer
Debouncer
run method
Debouncer class