addToHistory method

void addToHistory(
  1. 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;
}