Adds an item to the collection.
void add(String id, T item, {bool override = false}) { if (!_items.containsKey(id) || override) _items[id] = item; }