removeLateKeyEventHandler method
- 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:
- addLateKeyEventHandler, which adds the handlers removed by this function.
Implementation
void removeLateKeyEventHandler(OnKeyEventCallback handler) {
_highlightManager.removeLateKeyEventHandler(handler);
}