handleSelectAll method

  1. @override
SelectionResult handleSelectAll(
  1. SelectAllSelectionEvent event
)
override

Selects all contents of all Selectables.

Implementation

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