processPendingImmediately method

void processPendingImmediately()

Immediately executes debouncer action and resets internal timer

Implementation

void processPendingImmediately() {
  _timer?.cancel();

  if (!_isPending) {
    return;
  }

  _currentCallback?.call();
}