IfElseStatement.init constructor
IfElseStatement.init(
- DartBlockBooleanExpression ifCondition,
- StatementBlock ifThenStatementBlock,
- List<
(DartBlockBooleanExpression, StatementBlock)> elseIfStatementBlocks, - StatementBlock elseStatementBlock,
Implementation
IfElseStatement.init(
this.ifCondition,
this.ifThenStatementBlock,
this.elseIfStatementBlocks,
this.elseStatementBlock,
) : super.init(StatementType.ifElseStatement);