How should one migrate code using QgsMapCanvasLayer to set layer visibility?
The QGIS3 API break page didn't say that QgsMapCanvasLayer is removed or replaced by another class. Yet, it is not listed in the API page either.
For qgis 2 code to set layer visibility as follows:
ml = QgsMapCanvasLayer(lyr)
ml.setVisible(False)
Does it require certain importS in QGIS3 or should it be replaced by something else?