firstLayoutChild property
The first child in the layout tree.
Used as the starting point for layout traversals.
Implementation
@override
ChildLayout? get firstLayoutChild {
final first = firstChild;
return first == null ? null : BoxChildLayout(first);
}