12345678910111213141516171819202122232425262728293031323334353637383940 |
- // GENERATED CODE - DO NOT MODIFY BY HAND
- // **************************************************************************
- // AutoRouterGenerator
- // **************************************************************************
- // ignore_for_file: type=lint
- // coverage:ignore-file
- part of 'community_page_router.dart';
- abstract class _$CommunityPageRouter extends RootStackRouter {
- // ignore: unused_element
- _$CommunityPageRouter({super.navigatorKey});
- @override
- final Map<String, PageFactory> pagesMap = {
- CommunityPageRoute.name: (routeData) {
- return AutoRoutePage<dynamic>(
- routeData: routeData,
- child: const CommunityPage(),
- );
- }
- };
- }
- /// generated route for
- /// [CommunityPage]
- class CommunityPageRoute extends PageRouteInfo<void> {
- const CommunityPageRoute({List<PageRouteInfo>? children})
- : super(
- CommunityPageRoute.name,
- initialChildren: children,
- );
- static const String name = 'CommunityPageRoute';
- static const PageInfo<void> page = PageInfo<void>(name);
- }
|