body property

  1. @override
BlockImpl body
override

Return the body of the statement.

Implementation

@override
BlockImpl get body => _body;
void body=(BlockImpl block)

Implementation

set body(BlockImpl block) {
  _body = _becomeParentOf(block);
}