firstLayoutChild property
The first child in the layout tree.
Used as the starting point for layout traversals.
Implementation
@override
ChildLayout? get firstLayoutChild {
RenderBox? child = firstChild;
if (child != null) {
return RenderBoxChildLayout(child, this);
}
return null;
}