feat: poin page

This commit is contained in:
efrilm
2025-08-29 19:24:33 +07:00
parent 30a2bece41
commit 079813e95b
3 changed files with 148 additions and 315 deletions
+1 -7
View File
@@ -403,7 +403,6 @@ class ProductRedeemRoute extends _i23.PageRouteInfo<ProductRedeemRouteArgs> {
ProductRedeemRoute({
_i24.Key? key,
required _i16.Product product,
required _i16.Merchant merchant,
required _i16.PointCard pointCard,
List<_i23.PageRouteInfo>? children,
}) : super(
@@ -411,7 +410,6 @@ class ProductRedeemRoute extends _i23.PageRouteInfo<ProductRedeemRouteArgs> {
args: ProductRedeemRouteArgs(
key: key,
product: product,
merchant: merchant,
pointCard: pointCard,
),
initialChildren: children,
@@ -426,7 +424,6 @@ class ProductRedeemRoute extends _i23.PageRouteInfo<ProductRedeemRouteArgs> {
return _i17.ProductRedeemPage(
key: args.key,
product: args.product,
merchant: args.merchant,
pointCard: args.pointCard,
);
},
@@ -437,7 +434,6 @@ class ProductRedeemRouteArgs {
const ProductRedeemRouteArgs({
this.key,
required this.product,
required this.merchant,
required this.pointCard,
});
@@ -445,13 +441,11 @@ class ProductRedeemRouteArgs {
final _i16.Product product;
final _i16.Merchant merchant;
final _i16.PointCard pointCard;
@override
String toString() {
return 'ProductRedeemRouteArgs{key: $key, product: $product, merchant: $merchant, pointCard: $pointCard}';
return 'ProductRedeemRouteArgs{key: $key, product: $product, pointCard: $pointCard}';
}
}