handleSelectAll method Null safety
- SelectAllSelectionEvent event
 
protected">@protected
    Selects all contents of all selectables.
Implementation
@protected
SelectionResult handleSelectAll(SelectAllSelectionEvent event) {
  for (final Selectable selectable in selectables) {
    dispatchSelectionEventToChild(selectable, event);
  }
  currentSelectionStartIndex = 0;
  currentSelectionEndIndex = selectables.length - 1;
  return SelectionResult.none;
}