fireDebounceEnd method

void fireDebounceEnd(
  1. String tag
)

Fires the debounce action associated with the given tag and then cancels the debounce.

This function first calls fireDebounce with the provided tag to execute the debounce action. After that, it calls cancelDebounce with the same tag to cancel any further debounce actions.

tag: A string identifier used to reference the debounce action.

Implementation

void fireDebounceEnd(String tag) {
  fireDebounce(tag);
  cancelDebounce(tag);
}