router property

GoRouter router
final

Implementation

static final GoRouter router = GoRouter(
  initialLocation: AppRoutes.home,
  routes: [
    GoRoute(
      path: AppRoutes.home,
      name: 'home',
      pageBuilder: (context, state) => NoTransitionPage(
        child: const DesignSystemShowcase(),
      ),
    ),
  ],
);