diff --git a/lib/models/billing_plan.dart b/lib/models/billing_plan.dart index bfeeb0c98..c3a6aaa9e 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, );