Condition constructor

const Condition({
  1. String? conditionLeft,
  2. Operator? operator,
  3. String? conditionRight,
  4. CodePartDj? body,
})

Implementation

const Condition({
  this.conditionLeft,
  this.operator,
  this.conditionRight,
  this.body,
});