registerOnMouseEnterEvent method

void registerOnMouseEnterEvent(
  1. void pFunc(
    1. PointerEnterEvent
    )
)

Registers a callback for mouse enter events.

The provided callback will be invoked with the original Flutter PointerEnterEvent when the mouse enters the map widget bounds.

Implementation

void registerOnMouseEnterEvent(final void Function(PointerEnterEvent) pFunc) {
  _mouseEnteredCallback = pFunc;
}