Role constructor

const Role({
  1. required String name,
  2. TMetaData? metaData,
  3. required String expertise,
  4. List<Instruction>? instructions,
  5. List<Tool>? tools,
})

Implementation

const Role({
  required super.name,
  super.metaData,
  required this.expertise,
  this.instructions,
  this.tools,
});