mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-08-26 15:06:43 +00:00
sync stub
This commit is contained in:
parent
2c78a841bf
commit
373995ce11
2 changed files with 4 additions and 4 deletions
|
@ -3,7 +3,7 @@ class IAPProduct {
|
|||
final PurchaseType type;
|
||||
final String price;
|
||||
|
||||
IAPProduct({
|
||||
const IAPProduct({
|
||||
required this.storeId,
|
||||
required this.type,
|
||||
required this.price,
|
||||
|
|
|
@ -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\$',
|
||||
|
|
Loading…
Reference in a new issue