combine method
Implementation
@override
RouteInfo combine(RouteInfo other) {
if (other.isRoot) return this;
return ModalRouteInfo(
path: "${other.path}$path",
page: page,
children: children,
useRootNavigator: useRootNavigator,
);
}