render property

  1. @override
RenderBox render
override

The RenderBox representing this child.

This getter is useful to access properties and methods that the child handle does not provide.

Be mindful of using this without checking BoxyDelegate.isDryLayout first, confusing errors can occur in debug mode as the framework continuously validates dry and intrinsic layouts.

Implementation

@override
RenderBox get render => super.render as RenderBox;