nextSibling property
The next sibling in the layout tree.
Used for traversing the child list during layout calculations.
Implementation
@override
ChildLayout? get nextSibling {
final next = box.parentData.nextSibling;
return next == null ? null : BoxChildLayout(next);
}