go_router_delegate top-level property

GoRouter go_router_delegate
final

Implementation

final go_router_delegate = GoRouter(
  observers: MaterialAppParams.navigatorObservers ?? [],
  initialLocation: '/',
  routes: [
    GoRoute(
      path: '/',
      builder: (BuildContext context, GoRouterState state) {
        return MyAppHome ?? InitView();
      },
    ),
  ],
);