onCursorSelectionUpdatedLandmarks method

  1. @override
void onCursorSelectionUpdatedLandmarks(
  1. List<Landmark> landmarks
)

Called when cursor-hover landmark selections are detected.

Invoked when the native view detects that the cursor hovers over one or more landmarks.

Parameters

  • landmarks: Selected landmarks.

Implementation

@override
void onCursorSelectionUpdatedLandmarks(final List<Landmark> landmarks) {
  _cursorSelectionCallbackLandmarks?.call(landmarks);
}