deleteConversation method
Implementation
void deleteConversation(ConversationInfo conversationInfo,
{bool? clearMessageHistory}) async {
if (!await haveConnectivity()) {
return;
}
this.deleteConversationById(conversationInfo.getConversationId());
}