cancelDebounce method

void cancelDebounce(
  1. String tag
)

Cancels any active debounce operation with the given tag.

Implementation

void cancelDebounce(String tag) {
  _debounceOperations[tag]?.timer.cancel();
  _debounceOperations.remove(tag);
}