remove method

void remove(
  1. Key key
)

Removes an item from the index.

Implementation

void remove(Key key) {
  final entry = _items[key];
  if (entry == null) return;
  _removeInternal(key, entry.bounds);
}