popupSelectItems method

void popupSelectItems(
  1. List<T> itemsToSelect
)

select items programmatically on the popup of selection

Implementation

void popupSelectItems(List<T> itemsToSelect) {
  _popupStateKey.currentState?.selectItems(itemsToSelect);
}