debounce method

void debounce(
  1. VoidCallback action
)

Implementation

void debounce(VoidCallback action) {
  _debounceTimer?.cancel();
  _debounceTimer = Timer(this, action);
}