removeItemByKey method

void removeItemByKey(
  1. K key
)

Removes an item by key.

Implementation

void removeItemByKey(K key) {
  removeItemsByKeys({key});
}