hitTestChildren method

bool hitTestChildren(
  1. HitTestResult result,
  2. Offset position
)

Hit-test children in reverse paint order.

RenderObject.hitTest is exactly that child walk (no bounds or self check), so the base implementation is reused directly.

Implementation

bool hitTestChildren(HitTestResult result, Offset position) =>
    super.hitTest(result, position);