addChatSelection method
Implementation
void addChatSelection(ChatMessageModel item) {
if (item.messageType.toUpperCase() != Constants.mNotification) {
selectedChatList.add(item);
item.isSelected(true);
} else {
debugPrint("Unable to Select Notification Banner");
}
getMessageActions();
}