nextSibling property

  1. @override
ChildLayout? get nextSibling
override

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);
}