From fe42e4f58d5b4ce82380a864541a0a1e754e8415 Mon Sep 17 00:00:00 2001 From: Nikolas Rimikis Date: Fri, 30 Jun 2023 12:06:56 +0200 Subject: [PATCH] neon: make route required for AppImplementation --- packages/neon/neon/lib/src/models/app_implementation.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/neon/neon/lib/src/models/app_implementation.dart b/packages/neon/neon/lib/src/models/app_implementation.dart index 6d5bede1..0d2c9c37 100644 --- a/packages/neon/neon/lib/src/models/app_implementation.dart +++ b/packages/neon/neon/lib/src/models/app_implementation.dart @@ -82,7 +82,7 @@ abstract class AppImplementation /// /// All pages of the app must be specified as subroutes. /// If this is not [GoRoute] an inital route name must be specified by overriding [initialRouteName]. - RouteBase get route => throw UnimplementedError(); + RouteBase get route; /// Name of the initial route for this app. ///