ForLoopStatement constructor
ForLoopStatement(
- Statement? initStatement,
- DartBlockBooleanExpression condition,
- Statement? postStatement,
- List<
Statement> bodyStatements, - StatementType statementType,
- String statementId,
- bool isIsolated,
Implementation
ForLoopStatement(
this.initStatement,
this.condition,
this.postStatement,
this.bodyStatements,
super.statementType,
super.statementId,
super.isIsolated,
);