Instruction constructor

const Instruction({
  1. required 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,
})

Implementation

const Instruction({
  required super.name,
  super.metaData,
  this.principles,
  this.rules,
  this.reasons,
  this.mindset,
  this.approach,
  this.responsibilities,
  this.understandings,
  this.examples,
});