enaklo-flutter/lib/presentation/router/app_router.gr.dart
2025-08-29 14:39:05 +07:00

331 lines
8.5 KiB
Dart

// dart format width=80
// GENERATED CODE - DO NOT MODIFY BY HAND
// **************************************************************************
// AutoRouterGenerator
// **************************************************************************
// ignore_for_file: type=lint
// coverage:ignore-file
// ignore_for_file: no_leading_underscores_for_library_prefixes
import 'package:auto_route/auto_route.dart' as _i15;
import 'package:enaklo/presentation/pages/auth/login/login_page.dart' as _i2;
import 'package:enaklo/presentation/pages/auth/otp/otp_page.dart' as _i7;
import 'package:enaklo/presentation/pages/auth/pin/pin_page.dart' as _i8;
import 'package:enaklo/presentation/pages/auth/register/register_page.dart'
as _i11;
import 'package:enaklo/presentation/pages/main/main_page.dart' as _i3;
import 'package:enaklo/presentation/pages/main/pages/home/home_page.dart'
as _i1;
import 'package:enaklo/presentation/pages/main/pages/order/order_page.dart'
as _i6;
import 'package:enaklo/presentation/pages/main/pages/profile/profile_page.dart'
as _i10;
import 'package:enaklo/presentation/pages/main/pages/voucher/voucher_page.dart'
as _i14;
import 'package:enaklo/presentation/pages/merchant/merchant_page.dart' as _i4;
import 'package:enaklo/presentation/pages/onboarding/onboarding_page.dart'
as _i5;
import 'package:enaklo/presentation/pages/reward/pages/product_redeem/product_redeem_page.dart'
as _i9;
import 'package:enaklo/presentation/pages/reward/reward_page.dart' as _i12;
import 'package:enaklo/presentation/pages/splash/splash_page.dart' as _i13;
import 'package:flutter/material.dart' as _i16;
/// generated route for
/// [_i1.HomePage]
class HomeRoute extends _i15.PageRouteInfo<void> {
const HomeRoute({List<_i15.PageRouteInfo>? children})
: super(HomeRoute.name, initialChildren: children);
static const String name = 'HomeRoute';
static _i15.PageInfo page = _i15.PageInfo(
name,
builder: (data) {
return const _i1.HomePage();
},
);
}
/// generated route for
/// [_i2.LoginPage]
class LoginRoute extends _i15.PageRouteInfo<void> {
const LoginRoute({List<_i15.PageRouteInfo>? children})
: super(LoginRoute.name, initialChildren: children);
static const String name = 'LoginRoute';
static _i15.PageInfo page = _i15.PageInfo(
name,
builder: (data) {
return const _i2.LoginPage();
},
);
}
/// generated route for
/// [_i3.MainPage]
class MainRoute extends _i15.PageRouteInfo<void> {
const MainRoute({List<_i15.PageRouteInfo>? children})
: super(MainRoute.name, initialChildren: children);
static const String name = 'MainRoute';
static _i15.PageInfo page = _i15.PageInfo(
name,
builder: (data) {
return const _i3.MainPage();
},
);
}
/// generated route for
/// [_i4.MerchantPage]
class MerchantRoute extends _i15.PageRouteInfo<void> {
const MerchantRoute({List<_i15.PageRouteInfo>? children})
: super(MerchantRoute.name, initialChildren: children);
static const String name = 'MerchantRoute';
static _i15.PageInfo page = _i15.PageInfo(
name,
builder: (data) {
return const _i4.MerchantPage();
},
);
}
/// generated route for
/// [_i5.OnboardingPage]
class OnboardingRoute extends _i15.PageRouteInfo<void> {
const OnboardingRoute({List<_i15.PageRouteInfo>? children})
: super(OnboardingRoute.name, initialChildren: children);
static const String name = 'OnboardingRoute';
static _i15.PageInfo page = _i15.PageInfo(
name,
builder: (data) {
return const _i5.OnboardingPage();
},
);
}
/// generated route for
/// [_i6.OrderPage]
class OrderRoute extends _i15.PageRouteInfo<void> {
const OrderRoute({List<_i15.PageRouteInfo>? children})
: super(OrderRoute.name, initialChildren: children);
static const String name = 'OrderRoute';
static _i15.PageInfo page = _i15.PageInfo(
name,
builder: (data) {
return const _i6.OrderPage();
},
);
}
/// generated route for
/// [_i7.OtpPage]
class OtpRoute extends _i15.PageRouteInfo<void> {
const OtpRoute({List<_i15.PageRouteInfo>? children})
: super(OtpRoute.name, initialChildren: children);
static const String name = 'OtpRoute';
static _i15.PageInfo page = _i15.PageInfo(
name,
builder: (data) {
return const _i7.OtpPage();
},
);
}
/// generated route for
/// [_i8.PinPage]
class PinRoute extends _i15.PageRouteInfo<PinRouteArgs> {
PinRoute({
_i16.Key? key,
bool isCreatePin = true,
String? title,
List<_i15.PageRouteInfo>? children,
}) : super(
PinRoute.name,
args: PinRouteArgs(key: key, isCreatePin: isCreatePin, title: title),
initialChildren: children,
);
static const String name = 'PinRoute';
static _i15.PageInfo page = _i15.PageInfo(
name,
builder: (data) {
final args = data.argsAs<PinRouteArgs>(
orElse: () => const PinRouteArgs(),
);
return _i8.PinPage(
key: args.key,
isCreatePin: args.isCreatePin,
title: args.title,
);
},
);
}
class PinRouteArgs {
const PinRouteArgs({this.key, this.isCreatePin = true, this.title});
final _i16.Key? key;
final bool isCreatePin;
final String? title;
@override
String toString() {
return 'PinRouteArgs{key: $key, isCreatePin: $isCreatePin, title: $title}';
}
}
/// generated route for
/// [_i9.ProductRedeemPage]
class ProductRedeemRoute extends _i15.PageRouteInfo<ProductRedeemRouteArgs> {
ProductRedeemRoute({
_i16.Key? key,
required _i12.Product product,
required _i12.Merchant merchant,
required _i12.PointCard pointCard,
List<_i15.PageRouteInfo>? children,
}) : super(
ProductRedeemRoute.name,
args: ProductRedeemRouteArgs(
key: key,
product: product,
merchant: merchant,
pointCard: pointCard,
),
initialChildren: children,
);
static const String name = 'ProductRedeemRoute';
static _i15.PageInfo page = _i15.PageInfo(
name,
builder: (data) {
final args = data.argsAs<ProductRedeemRouteArgs>();
return _i9.ProductRedeemPage(
key: args.key,
product: args.product,
merchant: args.merchant,
pointCard: args.pointCard,
);
},
);
}
class ProductRedeemRouteArgs {
const ProductRedeemRouteArgs({
this.key,
required this.product,
required this.merchant,
required this.pointCard,
});
final _i16.Key? key;
final _i12.Product product;
final _i12.Merchant merchant;
final _i12.PointCard pointCard;
@override
String toString() {
return 'ProductRedeemRouteArgs{key: $key, product: $product, merchant: $merchant, pointCard: $pointCard}';
}
}
/// generated route for
/// [_i10.ProfilePage]
class ProfileRoute extends _i15.PageRouteInfo<void> {
const ProfileRoute({List<_i15.PageRouteInfo>? children})
: super(ProfileRoute.name, initialChildren: children);
static const String name = 'ProfileRoute';
static _i15.PageInfo page = _i15.PageInfo(
name,
builder: (data) {
return const _i10.ProfilePage();
},
);
}
/// generated route for
/// [_i11.RegisterPage]
class RegisterRoute extends _i15.PageRouteInfo<void> {
const RegisterRoute({List<_i15.PageRouteInfo>? children})
: super(RegisterRoute.name, initialChildren: children);
static const String name = 'RegisterRoute';
static _i15.PageInfo page = _i15.PageInfo(
name,
builder: (data) {
return const _i11.RegisterPage();
},
);
}
/// generated route for
/// [_i12.RewardPage]
class RewardRoute extends _i15.PageRouteInfo<void> {
const RewardRoute({List<_i15.PageRouteInfo>? children})
: super(RewardRoute.name, initialChildren: children);
static const String name = 'RewardRoute';
static _i15.PageInfo page = _i15.PageInfo(
name,
builder: (data) {
return const _i12.RewardPage();
},
);
}
/// generated route for
/// [_i13.SplashPage]
class SplashRoute extends _i15.PageRouteInfo<void> {
const SplashRoute({List<_i15.PageRouteInfo>? children})
: super(SplashRoute.name, initialChildren: children);
static const String name = 'SplashRoute';
static _i15.PageInfo page = _i15.PageInfo(
name,
builder: (data) {
return const _i13.SplashPage();
},
);
}
/// generated route for
/// [_i14.VoucherPage]
class VoucherRoute extends _i15.PageRouteInfo<void> {
const VoucherRoute({List<_i15.PageRouteInfo>? children})
: super(VoucherRoute.name, initialChildren: children);
static const String name = 'VoucherRoute';
static _i15.PageInfo page = _i15.PageInfo(
name,
builder: (data) {
return const _i14.VoucherPage();
},
);
}