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 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,
     );