change all refs

This commit is contained in:
mmomjian
2025-04-22 17:43:12 -04:00
parent a2c0ecfc2a
commit 2d309e91da
8 changed files with 19 additions and 19 deletions
+6 -6
View File
@@ -1351,20 +1351,20 @@ class PlacesCollectionRoute extends PageRouteInfo<void> {
}
/// generated route for
/// [RecentlyAddedPage]
class RecentlyAddedRoute extends PageRouteInfo<void> {
const RecentlyAddedRoute({List<PageRouteInfo>? children})
/// [RecentlyTakenPage]
class RecentlyTakenRoute extends PageRouteInfo<void> {
const RecentlyTakenRoute({List<PageRouteInfo>? children})
: super(
RecentlyAddedRoute.name,
RecentlyTakenRoute.name,
initialChildren: children,
);
static const String name = 'RecentlyAddedRoute';
static const String name = 'RecentlyTakenRoute';
static PageInfo page = PageInfo(
name,
builder: (data) {
return const RecentlyAddedPage();
return const RecentlyTakenPage();
},
);
}