IfStatement constructor
IfStatement(
- BinaryExpression? condition,
- BlockStatement? consequent,
- BlockStatement? alternate, {
- Map? ast,
Implementation
IfStatement(this.condition, this.consequent, this.alternate, {Map? ast})
: super(ast: ast);