getConversationById method
Implementation
Future<Conversation?> getConversationById(String uuid) async {
final conversations = await getConversations();
try {
return conversations.firstWhere((conv) => conv.uuid == uuid);
} catch (e) {
return null;
}
}