deselectAll method
Removes all values
from the list of selected items that were previously
selected. Will only emit a changes event for values that were actually
removed.
Implementation
@override
void deselectAll(Iterable<T> values) {
(_delegateModel as MultiSelectionModel<T>).deselectAll(values);
}