handleSelectionEdgeUpdate method

  1. @override
SelectionResult handleSelectionEdgeUpdate(
  1. SelectionEdgeUpdateEvent event
)
override

Updates the selection edges.

Implementation

@override
SelectionResult handleSelectionEdgeUpdate(SelectionEdgeUpdateEvent event) {
  updateLastSelectionEdgeLocation(
    globalSelectionEdgeLocation: event.globalPosition,
    forEnd: event.type == SelectionEventType.endEdgeUpdate,
  );
  return super.handleSelectionEdgeUpdate(event);
}