AiPlanStep constructor

const AiPlanStep({
  1. required String id,
  2. required String type,
  3. required String description,
  4. String? toolName,
  5. Map<String, dynamic> arguments = const {},
})

Implementation

const AiPlanStep({
  required this.id,
  required this.type,
  required this.description,
  this.toolName,
  this.arguments = const {},
});