Instruction constructor
const
Instruction(
- String name, {
- TMetaData? metaData,
- List<
String> ? principles, - List<
String> ? rules, - List<
String> ? reasons, - List<
String> ? mindset, - List<
String> ? approach, - List<
String> ? responsibilities, - List<
String> ? understandings, - List<
String> ? examples, - Template? template,
- Instruction? child,
- List<
Instruction> ? children,
Implementation
const Instruction(
String name, {
super.metaData,
this.principles,
this.rules,
this.reasons,
this.mindset,
this.approach,
this.responsibilities,
this.understandings,
this.examples,
this.template,
this.child,
this.children,
}) : super(
name: name,
);