updateItems method
Updates all items (used for local pagination)
Implementation
void updateItems(List<T> items) {
_internalItems = items.map(_convertToSelectItem).toList();
_displayItems = List.from(_internalItems);
_preserveSelectionStates();
displayItemsNotifier.value = List.from(_displayItems);
notifyListeners();
}