body property

  1. @override
FunctionBodyImpl body
override

Return the body of the function.

Implementation

@override
FunctionBodyImpl get body => _body;
void body=(FunctionBodyImpl functionBody)

Implementation

set body(FunctionBodyImpl functionBody) {
  _body = _becomeParentOf(functionBody);
}