call method
void
call(
- void action()
Implementation
void call(void Function() action) {
if (_timer?.isActive ?? false) cancel();
_timer = Timer(delay, action);
}
void call(void Function() action) {
if (_timer?.isActive ?? false) cancel();
_timer = Timer(delay, action);
}