IfElseStatement constructor

IfElseStatement(
  1. DartBlockBooleanExpression ifCondition,
  2. StatementBlock ifThenStatementBlock,
  3. List<(DartBlockBooleanExpression, StatementBlock)> elseIfStatementBlocks,
  4. StatementBlock elseStatementBlock,
  5. StatementType statementType,
  6. String statementId,
)

Implementation

IfElseStatement(
  this.ifCondition,
  this.ifThenStatementBlock,
  this.elseIfStatementBlocks,
  this.elseStatementBlock,
  super.statementType,
  super.statementId,
);