render property

The RenderBoxyMixin of the current context.

Implementation

RenderBoxyMixin<RenderObject, BaseBoxyParentData, ChildHandleType>
    get render {
  assert(() {
    if (debugPhase == BoxyDelegatePhase.none) {
      throw FlutterError(
          'The $this boxy delegate attempted to get the context outside of its normal lifecycle.\n'
          'You should only access the BoxyDelegate from its overridden methods.');
    }
    return true;
  }());
  return _render!;
}