From 6e2e82c8bfe993722bf071215a1496f6f7b431a6 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 b4224fec..427e7e19 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. ///