insertNewChildControllers method
Implementation
void insertNewChildControllers(NodeController? controller, int index) {
if (controller == null) {
return;
}
_mutableChildControllers.insert(index, controller);
resetNodesAfterChildAtIndex(min);
}