menu
mediax package
documentation
utils/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); }
mediax package
documentation
utils/debouncer
Debouncer
run method
Debouncer class