handleSelectParagraph method

  1. @override
SelectionResult handleSelectParagraph(
  1. SelectParagraphSelectionEvent event
)
override

Selects a paragraph in a Selectable at the location SelectParagraphSelectionEvent.globalPosition.

Implementation

@override
SelectionResult handleSelectParagraph(SelectParagraphSelectionEvent event) {
  final SelectionResult result = super.handleSelectParagraph(event);
  didReceiveSelectionBoundaryEvents();
  return result;
}