The size of the ith child.
i
If i is negative or exceeds childCount, returns null.
childCount
@override Size getChildSize(int i) { if (i < 0 || i >= _randomAccessChildren.length) return null; return _randomAccessChildren[i].size; }