Vishnu Mohandas пре 4 година
родитељ
комит
8b7c16d522
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      lib/models/billing_plan.dart

+ 2 - 2
lib/models/billing_plan.dart

@@ -21,7 +21,7 @@ class BillingPlan {
     String id,
     String id,
     String androidID,
     String androidID,
     String iosID,
     String iosID,
-    int storageInMBs,
+    int storage,
     String price,
     String price,
     String period,
     String period,
   }) {
   }) {
@@ -29,7 +29,7 @@ class BillingPlan {
       id: id ?? this.id,
       id: id ?? this.id,
       androidID: androidID ?? this.androidID,
       androidID: androidID ?? this.androidID,
       iosID: iosID ?? this.iosID,
       iosID: iosID ?? this.iosID,
-      storage: storageInMBs ?? this.storage,
+      storage: storage ?? this.storage,
       price: price ?? this.price,
       price: price ?? this.price,
       period: period ?? this.period,
       period: period ?? this.period,
     );
     );