TInstruction constructor
const
TInstruction(
- 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, - TTemplate? template,
- TInstruction? child,
- List<
TInstruction> ? children,
Implementation
const TInstruction(
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,
);