IfStatement constructor

IfStatement(
  1. Expression condition,
  2. Statement then, [
  3. Statement? otherwise
])

Implementation

IfStatement(this.condition, this.then, [this.otherwise]);