cancel static method

void cancel(
  1. String tag
)

Cancels a pending debounce action.

Implementation

static void cancel(String tag) {
  _timers[tag]?.cancel();
  _timers.remove(tag);
}