call method
void
call(
- void action()
Implementation
void call(void Function() action) {
_timer?.cancel(); // cancel the current task
_timer = Timer(delay, action);
}
void call(void Function() action) {
_timer?.cancel(); // cancel the current task
_timer = Timer(delay, action);
}