The previous child before the given child in the child list.
Source
ChildType childBefore(ChildType child) { assert(child != null); assert(child.parent == this); final ParentDataType childParentData = child.parentData; return childParentData.previousSibling; }