addConversation method
Implementation
void addConversation(Conversation conversation) async {
await ConversationRepository().addConversation(conversation);
conversationList.value = await ConversationRepository().getConversations();
conversationList.value = conversationList.reversed.toList();
update();
}