lastLayoutChild property
The last child in the layout tree.
Used as the ending point for layout traversals.
Implementation
@override
ChildLayout? get lastLayoutChild {
final last = lastChild;
return last == null ? null : BoxChildLayout(last);
}