IfStatement constructor

IfStatement(
  1. BinaryExpression? condition,
  2. BlockStatement? consequent,
  3. BlockStatement? alternate, {
  4. Map? ast,
})

Implementation

IfStatement(this.condition, this.consequent, this.alternate, {Map? ast})
    : super(ast: ast);