ForLoopStatement constructor

ForLoopStatement(
  1. Statement? initStatement,
  2. DartBlockBooleanExpression condition,
  3. Statement? postStatement,
  4. List<Statement> bodyStatements,
  5. StatementType statementType,
  6. String statementId,
  7. bool isIsolated,
)

Implementation

ForLoopStatement(
  this.initStatement,
  this.condition,
  this.postStatement,
  this.bodyStatements,
  super.statementType,
  super.statementId,
  super.isIsolated,
);