IfStmt constructor

IfStmt(
  1. Expression condition,
  2. List<Statement> trueCase, [
  3. List<Statement> falseCase = const []
])

Implementation

IfStmt(this.condition, this.trueCase, [this.falseCase = const []]);