selectAll method

void selectAll(
  1. List items
)

Selects all items in the provided items list.

Implementation

void selectAll(List items) {
  value = items;
  notifyListeners();
}