From 6a4db424925ea76a3f9e6d40d77eff6c7ff998bb Mon Sep 17 00:00:00 2001 From: Thomas Frantz Date: Tue, 1 Jun 2021 14:57:48 -0400 Subject: [PATCH] Fixed route_data.dart part of path I started getting build errors >= routemaster 0.9.0 where it can't find route_data.dart. It appears as though this path got changed to a relative one, but went up one too many directories. --- lib/src/route_data.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/route_data.dart b/lib/src/route_data.dart index 8314b7e..8050832 100644 --- a/lib/src/route_data.dart +++ b/lib/src/route_data.dart @@ -1,4 +1,4 @@ -part of '../../routemaster.dart'; +part of '../routemaster.dart'; /// Information generated from a specific path (URL). ///