remove method
Removes an item from the collection.
Implementation
void remove(String id) {
if (_items.containsKey(id)) _items.remove(id);
}
Removes an item from the collection.
void remove(String id) {
if (_items.containsKey(id)) _items.remove(id);
}