clearSelection method

void clearSelection()

Set all selection to empty

Implementation

void clearSelection() {
  if (selectedIndexes.any((element) => true)) {
    selectedIndexes.clear();
    notifyListeners();
  }
}