Fix variable name
This commit is contained in:
parent
088c1777fd
commit
8b7c16d522
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue