DynamicRouteInfo constructor
const
DynamicRouteInfo({
- required String path,
- required Type page,
- required RouteType when(
- BuildContext context
- List<
RouteInfo> ? children, - PageTransition? transition,
- String? routePostfix,
Implementation
const DynamicRouteInfo({
required super.path,
required super.page,
required this.when,
super.children,
super.transition,
super.routePostfix,
super.useRootNavigator,
});