deleteConversation method
Implementation
void deleteConversation(int index) async {
Conversation conversation = conversationList[index];
await ConversationRepository().deleteConversation(conversation.uuid);
conversationList.value = await ConversationRepository().getConversations();
update();
}