load method
- String conversationId
Asynchronously loads a conversation from storage.
Implementation
Future<Conversation?> load(String conversationId) async {
if (storage == null) return null;
final conv = await storage!.loadConversation(conversationId);
if (conv != null) {
_conversations[conv.id] = conv;
}
return conv;
}