Fix variable name

This commit is contained in:
Vishnu Mohandas 2021-02-01 15:51:25 +05:30
parent 088c1777fd
commit 8b7c16d522

View file

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