Role constructor
const
Role({
- required String name,
- TMetaData? metaData,
- TCliTool? cliTool,
- String? command,
- TPromptDelivery promptDelivery = TPromptDelivery.system,
- required String expertise,
- List<
Activity> ? activities, - List<
Checklist> ? checklists, - List<
Instruction> ? instructions, - List<
Template> ? templates, - List<
Tool> ? tools, - List<
Workflow> ? workflows,
Implementation
const Role({
required super.name,
super.metaData,
super.cliTool,
super.command,
super.promptDelivery,
required this.expertise,
this.activities,
this.checklists,
this.instructions,
this.templates,
this.tools,
this.workflows,
});