updateRoute method
Implementation
void updateRoute(String path) {
final route = _currentRoute(path);
final index = _currentIndex(path);
handleWebUrl(route);
WidgetsBinding.instance.addPostFrameCallback((_) {
indexNotifier.value = index;
routingTypeNotifier.value = route.type;
onRouteChanged?.call(route);
});
}