diff --git a/lib/models/billing_plan.dart b/lib/models/billing_plan.dart index bfeeb0c98db97c7196ff349e5784d7bb0a265e22..c3a6aaa9e71fe273c26a35fd34b26eaf17f9d7c3 100644 --- a/lib/models/billing_plan.dart +++ b/lib/models/billing_plan.dart @@ -21,7 +21,7 @@ class BillingPlan { String id, String androidID, String iosID, - int storageInMBs, + int storage, String price, String period, }) { @@ -29,7 +29,7 @@ class BillingPlan { id: id ?? this.id, androidID: androidID ?? this.androidID, iosID: iosID ?? this.iosID, - storage: storageInMBs ?? this.storage, + storage: storage ?? this.storage, price: price ?? this.price, period: period ?? this.period, );