sync stub

This commit is contained in:
Vadim 2025-08-09 17:03:51 +02:00
parent 2c78a841bf
commit 373995ce11
2 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,7 @@ class IAPProduct {
final PurchaseType type;
final String price;
IAPProduct({
const IAPProduct({
required this.storeId,
required this.type,
required this.price,

View file

@ -21,17 +21,17 @@ class IAPProductsProviderState extends State<IAPProductsProvider> {
Widget build(BuildContext context) {
return IAPProducts(
isPro: true,
lifetime: IAPProduct(
lifetime: const IAPProduct(
storeId: '',
type: PurchaseType.lifetime,
price: '0.0\$',
),
yearly: IAPProduct(
yearly: const IAPProduct(
storeId: '',
type: PurchaseType.yearly,
price: '0.0\$',
),
monthly: IAPProduct(
monthly: const IAPProduct(
storeId: '',
type: PurchaseType.monthly,
price: '0.0\$',