Instruction constructor

const Instruction(
  1. String name, {
  2. TMetaData? metaData,
  3. List<String>? principles,
  4. List<String>? rules,
  5. List<String>? reasons,
  6. List<String>? mindset,
  7. List<String>? approach,
  8. List<String>? responsibilities,
  9. List<String>? understandings,
  10. List<String>? examples,
  11. Template? template,
  12. Instruction? child,
  13. 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,
     );