removeSelectedItems method

void removeSelectedItems()

Removes all currently selected items.

Implementation

void removeSelectedItems() {
  if (selectedKeys.isEmpty) return;
  removeItemsByKeys(value.selectedKeys);
}