registerOnMouseExitEvent method

void registerOnMouseExitEvent(
  1. void pFunc(
    1. PointerExitEvent
    )
)

Registers a callback for mouse exit events.

The provided callback is invoked when the mouse leaves the map widget bounds.

Implementation

void registerOnMouseExitEvent(final void Function(PointerExitEvent) pFunc) {
  _mouseExitedCallback = pFunc;
}