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