AgentDefinitionInfo constructor

const AgentDefinitionInfo({
  1. required String agentType,
  2. String? memory,
  3. bool isActive = true,
})

Implementation

const AgentDefinitionInfo({
  required this.agentType,
  this.memory,
  this.isActive = true,
});