WhileLoopStatement constructor

WhileLoopStatement(
  1. bool isDoWhile,
  2. DartBlockBooleanExpression condition,
  3. List<Statement> bodyStatements,
  4. StatementType statementType,
  5. String statementId,
  6. bool isIsolated,
)

Implementation

WhileLoopStatement(
  this.isDoWhile,
  this.condition,
  this.bodyStatements,
  super.statementType,
  super.statementId,
  super.isIsolated,
);