find static method

RenderLayoutBox? find(
  1. BuildContext context
)

Implementation

static RenderLayoutBox? find(BuildContext context) {
  RenderObject? renderObject = context.findRenderObject();
  return _findInDescendants(renderObject);
}