IfElseDj constructor

IfElseDj({
  1. dynamic descriptionDj,
  2. List<Condition>? conditions,
  3. CodePartDjType codePartDjType = CodePartDjType.IfElse,
})

Implementation

IfElseDj({
  descriptionDj,
  this.conditions,
  CodePartDjType codePartDjType = CodePartDjType.IfElse,
}) : super(
        descriptionDj: descriptionDj,
        codePartDjType: codePartDjType,
      );