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