collapseSelection method
void
collapseSelection()
Implementation
void collapseSelection() {
final currentSelection = _selection;
if (currentSelection != null) {
_cursor = currentSelection.extent;
}
_selection = null;
}