The setLayerInsertionPoint() with the QgsProject.instance().layerTreeRoot() object is deprecated. The documentation says:
since QGIS 3.10 use setLayerInsertionPoint( const InsertionPoint &insertionPoint ) instead
but I can find no example of how to implement this update. My current code is as follows:
QgsProject.instance().layerTreeRegistryBridge().setLayerInsertionPoint(QgsProject.instance().layerTreeRoot(), 0)
It seems the only change is the first argument. How should I update the statement to comply with current requirements?
QgsProject.instance().layerTreeRegistryBridge().setLayerInsertionPoint([what_goes_here?], 0)