onPointerMove property

EventCallback? onPointerMove

The callback that is currently being run onTap.

If null, this WinEvent can be skipped.

Implementation

EventCallback get onPointerMove => _callbacks[WinEvent.mouseMove];
void onPointerMove=(EventCallback? onPointerMove)

Register this callback to be called, whenever the associated WinEvent is fired.

If null is passed, the callback will be removed. This should mean better performance as the native code won't have to call into dart for this even anymore.

{@macro betrayal.expose_more_members_on_interaction}

It would be possible to also expose the hWnd and WinEvent as well (See _TrayIconInteraction).

Implementation

set onPointerMove(EventCallback onPointerMove) =>
    _manageEventSubscription(WinEvent.mouseMove, onPointerMove);