From 69af7f66acb20871e2b3cc84c79f2de62e8a68cb Mon Sep 17 00:00:00 2001 From: Liam Kearney <76269376+LiamKearn@users.noreply.github.com> Date: Mon, 1 Jun 2026 21:28:35 +1000 Subject: [PATCH] Update go_router type safe route docs to reflect that the generated mixins are now public --- packages/go_router/doc/type-safe-routes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/go_router/doc/type-safe-routes.md b/packages/go_router/doc/type-safe-routes.md index c958b6a1e29f..fe7b1dd85a4e 100644 --- a/packages/go_router/doc/type-safe-routes.md +++ b/packages/go_router/doc/type-safe-routes.md @@ -28,7 +28,7 @@ part 'go_router_builder.g.dart'; ] ) @immutable -class HomeScreenRoute extends GoRouteData with _$HomeScreenRoute { +class HomeScreenRoute extends GoRouteData with $HomeScreenRoute { @override Widget build(BuildContext context, GoRouterState state) { return const HomeScreen(); @@ -36,7 +36,7 @@ class HomeScreenRoute extends GoRouteData with _$HomeScreenRoute { } @immutable -class SongRoute extends GoRouteData with _$SongRoute { +class SongRoute extends GoRouteData with $SongRoute { final int id; const SongRoute({