clearSelection method

bool clearSelection({
  1. bool notifyListeners = true,
})

Clears the selection state.

Implementation

bool clearSelection({bool notifyListeners = true}) {
  return updateSelection([], [], notifyListeners: notifyListeners);
}