cancelDebounce method
- String tag
Cancels any active debounce operation with the given tag
.
Implementation
void cancelDebounce(String tag) {
_debounceOperations[tag]?.timer.cancel();
_debounceOperations.remove(tag);
}
Cancels any active debounce operation with the given tag
.
void cancelDebounce(String tag) {
_debounceOperations[tag]?.timer.cancel();
_debounceOperations.remove(tag);
}