replaceRoot method
Implementation
@override
void replaceRoot(String? path) {
navStack.clear();
if (path == null) {
navStack.add(initialDartBoardPath);
} else {
navStack.add(DartBoardPath(path, initialPath, showAnimation: false));
}
notifyListeners();
}