handleClearSelection method

  1. @override
SelectionResult handleClearSelection(
  1. ClearSelectionEvent event
)
override

Removes the selection of all Selectables this delegate manages.

Implementation

@override
SelectionResult handleClearSelection(ClearSelectionEvent event) {
  final SelectionResult result = super.handleClearSelection(event);
  clearInternalSelectionState();
  return result;
}