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