setSelectAll method

void setSelectAll(
  1. bool isSelected
)

Sets the selection state of all nodes.

Implementation

void setSelectAll(bool isSelected) {
  setState(() {
    _setAllNodesSelection(isSelected);
    _updateSelectAllState();
  });
  _notifySelectionChanged();
}