IfStatement constructor

const IfStatement(
  1. AstNode condition,
  2. AstNode thenBranch,
  3. AstNode? elseBranch
)

Implementation

const IfStatement(this.condition, this.thenBranch, this.elseBranch);