hitTestChildren method
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);