remove method
Removes an item from the index.
Implementation
void remove(Key key) {
final entry = _items[key];
if (entry == null) return;
_removeInternal(key, entry.bounds);
}
Removes an item from the index.
void remove(Key key) {
final entry = _items[key];
if (entry == null) return;
_removeInternal(key, entry.bounds);
}