remove method
Removes a specific item from working memory.
Implementation
void remove(String memoryId) {
_queue.removeWhere((s) => s.memory.id == memoryId);
}
Removes a specific item from working memory.
void remove(String memoryId) {
_queue.removeWhere((s) => s.memory.id == memoryId);
}