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