selectAll method

void selectAll()

Selects all currently loaded items.

Implementation

void selectAll() {
  _isSelectionMode = true;
  selectedItems.addAll(items);
  notifyListeners();
}