addAllCacheToList method

void addAllCacheToList()

Implementation

void addAllCacheToList() {
  if (cacheMessages.isNotEmpty) {
    msgModelList.insertAll(0, cacheMessages.reversed);
    lastActionType = MessageLastActionType.bottomPosition;
    cacheMessages.clear();
    refresh();
  }
}