removeLateKeyEventHandler method

void removeLateKeyEventHandler(
  1. OnKeyEventCallback handler
)

Removes a key handler added by calling addLateKeyEventHandler.

If handlers are removed while the existing callbacks are being invoked, they will continue to be called until the next key event is received.

See also:

Implementation

void removeLateKeyEventHandler(OnKeyEventCallback handler) {
  _highlightManager.removeLateKeyEventHandler(handler);
}