add method
void
add(
- T item
Updates all records in the store
Adds an item
to the store.
Implementation
// void updateAll(T Function(String, T) update) {
// _inMemoryStore.updateAll(update);
// _update();
// }
/// Adds an [item] to the store.
void add(T item) {
_add(item);
_update(StreamElement(item: item, operation: Operation.add));
}