clear method

void clear()

Clears all selection.

Implementation

void clear() {
  if (_selected.isEmpty) {
    return;
  }
  _selected.clear();
  notifyListeners();
}