childAfter method

RenderBox? childAfter(
  1. RenderBox child
)
inherited

The next child after the given child in the child list.

Implementation

ChildType? childAfter(ChildType child) {
  assert(child.parent == this);
  final ParentDataType childParentData = child.parentData! as ParentDataType;
  return childParentData.nextSibling;
}