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