clearChatSelection method

dynamic clearChatSelection(
  1. ChatMessageModel item
)

Implementation

clearChatSelection(ChatMessageModel item) {
  selectedChatList.remove(item);
  item.isSelected(false);
  if (selectedChatList.isEmpty) {
    isSelected(false);
    selectedChatList.clear();
  }
  starredChatList.refresh();
  validateForForwardMessage();
  validateForShareMessage();
}