SequentialThinkingInput constructor

SequentialThinkingInput({
  1. required String thought,
  2. required bool nextThoughtNeeded,
  3. required int thoughtNumber,
  4. required int totalThoughts,
  5. bool? isRevision,
  6. int? revisesThought,
  7. int? branchFromThought,
  8. String? branchId,
  9. bool? needsMoreThoughts,
})

Implementation

SequentialThinkingInput({
  required this.thought,
  required this.nextThoughtNeeded,
  required this.thoughtNumber,
  required this.totalThoughts,
  this.isRevision,
  this.revisesThought,
  this.branchFromThought,
  this.branchId,
  this.needsMoreThoughts,
});