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