fireDebounce method

void fireDebounce(
  1. String tag
)

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

void fireDebounce(String tag) {
  if (_debounceOperations[tag]?.callback != null) {
    _debounceOperations[tag]?.callback();
  }
}