getConversation method
Implementation
Future<ConversationState?> getConversation(String id) async {
final data = await _db.get('conversation:$id');
if (data == null) return null;
return ConversationState.fromJson(data);
}
Future<ConversationState?> getConversation(String id) async {
final data = await _db.get('conversation:$id');
if (data == null) return null;
return ConversationState.fromJson(data);
}