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 PurchaseType type;
final String price; final String price;
IAPProduct({ const IAPProduct({
required this.storeId, required this.storeId,
required this.type, required this.type,
required this.price, required this.price,

View file

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