handleSelectAll method

  1. @Deprecated('Use `contextMenuBuilder` instead. ' 'This feature was deprecated after v3.3.0-0.5.pre.')
void handleSelectAll(
  1. TextSelectionDelegate delegate
)

Call TextSelectionDelegate.selectAll to set the current selection to contain the entire text value.

Does not hide the toolbar.

This is called by subclasses when their select-all affordance is activated by the user.

Implementation

@Deprecated(
  'Use `contextMenuBuilder` instead. '
  'This feature was deprecated after v3.3.0-0.5.pre.',
)
void handleSelectAll(TextSelectionDelegate delegate) {
  delegate.selectAll(SelectionChangedCause.toolbar);
}