handleSelectAll method
- @Deprecated('Use `contextMenuBuilder` instead. ' 'This feature was deprecated after v3.3.0-0.5.pre.')
- @override
- 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();
}