ProgramRuleVariable constructor

ProgramRuleVariable({
  1. String? id,
  2. String? name,
  3. String? displayName,
  4. required String programRuleVariableSourceType,
  5. dynamic program,
  6. bool? useCodeForOptionSet,
  7. String? dataElement,
  8. String? trackedEntityAttribute,
  9. String? option,
  10. String? section,
  11. required bool dirty,
})

Implementation

ProgramRuleVariable(
    {String? id,
    String? name,
    String? displayName,
    required this.programRuleVariableSourceType,
    this.program,
    this.useCodeForOptionSet,
    this.dataElement,
    this.trackedEntityAttribute,
    this.option,
    this.section,
    required bool dirty})
    : super(id: id, name: name, displayName: displayName, dirty: dirty);