handleSelectAll method

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

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.',
)
@override
void handleSelectAll(TextSelectionDelegate delegate) {
  super.handleSelectAll(delegate);
  delegate.hideToolbar();
}