onCursorSelectionUpdatedPath method

  1. @override
void onCursorSelectionUpdatedPath(
  1. Path path
)

Called when cursor-hover path selections are detected.

Invoked when the cursor hovers over a vector path.

Parameters

  • path: Selected path.

Implementation

@override
void onCursorSelectionUpdatedPath(final Path path) {
  _cursorSelectionCallbackPath?.call(path);
}