Conditional constructor

Conditional(
  1. AST condition,
  2. AST trueExp,
  3. AST falseExp
)

Implementation

Conditional(
  this.condition,
  this.trueExp,
  this.falseExp,
);