onDragSelectionStart method

void onDragSelectionStart(
  1. DragStartDetails details
)

Implementation

void onDragSelectionStart(DragStartDetails details) {
  getRenderEditor()!.selectPositionAt(
    details.globalPosition,
    null,
    SelectionChangedCause.drag,
  );
}