getConversation method

Future<ConversationState?> getConversation(
  1. String id
)

Implementation

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