fire static method
Fires the callback associated with tag
immediately. This does not cancel the debounce timer,
so if you want to invoke the callback and cancel the debounce timer, you must first call
fire(tag)
and then cancel(tag)
.
Implementation
static void fire(String tag) {
_operations[tag]?.callback();
}