Condition constructor

Condition({
  1. AndCondition? andCondition,
  2. OrCondition? orCondition,
  3. PercentCondition? percent,
})

Implementation

Condition({
  this.andCondition,
  this.orCondition,
  this.percent,
});