If constructor

If(
  1. Expr condition,
  2. Stmt thenBranch,
  3. Stmt? elseBranch
)

Implementation

If(this.condition, this.thenBranch, this.elseBranch, );