flushPending method

List<PointerSignal> flushPending(
  1. int timestampMs
)

Emits deferred single-tap signals whose double-tap window has expired.

Call this from a timer/tick in the host app if there are no pointer events.

Implementation

List<PointerSignal> flushPending(int timestampMs) {
  return _flushExpired(timestampMs);
}