indexOf method
- RenderBox child
Gets the index of a child by looking at its parentData.
This relies on the childManager maintaining ListWheelParentData.index.
Implementation
int indexOf(RenderBox child) {
final ListWheelParentData childParentData = child.parentData! as ListWheelParentData;
assert(childParentData.index != null);
return childParentData.index!;
}