loadChat method
Loads a server snapshot and returns a chat with history restored.
Implementation
Future<AgentChat<State>> loadChat({
String? snapshotId,
String? sessionId,
Map<String, dynamic>? context,
}) => _api.loadChat(
snapshotId: snapshotId,
sessionId: sessionId,
context: context,
);