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