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