thenStatement property

  1. @override
StatementImpl thenStatement
override

Return the statement that is executed if the condition evaluates to true.

Implementation

@override
StatementImpl get thenStatement => _thenStatement;
void thenStatement=(StatementImpl statement)

Implementation

set thenStatement(StatementImpl statement) {
  _thenStatement = _becomeParentOf(statement);
}