clearChatSelection method

dynamic clearChatSelection(
  1. ChatMessageModel chatList
)

Implementation

clearChatSelection(ChatMessageModel chatList) {
  selectedChatList.remove(chatList);
  chatList.isSelected(false);
  if (selectedChatList.isEmpty) {
    isSelected(false);
    selectedChatList.clear();
  }
  this.chatList.refresh();
}