ForStatement constructor

ForStatement(
  1. Node? init,
  2. Expression? condition,
  3. Expression? update,
  4. Statement body,
)

Implementation

ForStatement(this.init, this.condition, this.update, this.body);