checkUnconnectedNotes method
Implementation
void checkUnconnectedNotes(Graph graph) {
graph.nodes.forEach((element) {
if (getNodeData(element) == null) {
if (!kReleaseMode) {
print('$element is not connected to primary ancestor');
}
}
});
}