addToHistory method
- ChatItem item
Adds the provided item to the _history.
Implementation
void addToHistory(ChatItem item) {
_history.removeWhere((e) => e.key == item.key);
_history.add(item);
canGoDown.value = true;
}
Adds the provided item to the _history.
void addToHistory(ChatItem item) {
_history.removeWhere((e) => e.key == item.key);
_history.add(item);
canGoDown.value = true;
}