insertRenderObjectChild method
Implementation
void insertRenderObjectChild(
PaneElement paneElement, covariant RenderBox child, Object? slot) {
setupParentData(child, slot);
renderBoxes[slot] = child;
renderer?.adoptChild(child);
}
void insertRenderObjectChild(
PaneElement paneElement, covariant RenderBox child, Object? slot) {
setupParentData(child, slot);
renderBoxes[slot] = child;
renderer?.adoptChild(child);
}