getChildAt method

RenderNode? getChildAt(
  1. int index
)

Implementation

RenderNode? getChildAt(int index) {
  if (0 <= index && index < childCount) {
    return _children[index];
  }

  return null;
}