clearAllChatSelection method

dynamic clearAllChatSelection()

Implementation

clearAllChatSelection() {
  isSelected(false);
  for (var chatItem in chatList) {
    chatItem.isSelected(false);
  }
  selectedChatList.clear();
  chatList.refresh();
}