12345678910111213141516171819202122232425262728293031323334353637383940 |
- part of 'payment_page_router.dart';
- abstract class _$PaymentPageRouter extends RootStackRouter {
-
- _$PaymentPageRouter({super.navigatorKey});
- @override
- final Map<String, PageFactory> pagesMap = {
- PaymentPageRoute.name: (routeData) {
- return AutoRoutePage<dynamic>(
- routeData: routeData,
- child: const 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);
- }
|