body property

  1. @override
StatementImpl body
override

Return the body of the loop.

Implementation

@override
StatementImpl get body => _body;
void body=(StatementImpl statement)

Implementation

set body(StatementImpl statement) {
  _body = _becomeParentOf(statement);
}