RestoredSession constructor

const RestoredSession({
  1. required SessionSnapshot snapshot,
  2. List<TodoItem> todos = const [],
  3. Set<String> referencedFiles = const {},
  4. String? lastWorkingDirectory,
  5. Map<String, dynamic> agentSettings = const {},
})

Implementation

const RestoredSession({
  required this.snapshot,
  this.todos = const [],
  this.referencedFiles = const {},
  this.lastWorkingDirectory,
  this.agentSettings = const {},
});