|
@@ -6,7 +6,6 @@ const appStore = "appstore";
|
|
const playStore = "playstore";
|
|
const playStore = "playstore";
|
|
|
|
|
|
class Subscription {
|
|
class Subscription {
|
|
- final int id;
|
|
|
|
final String productID;
|
|
final String productID;
|
|
final int storage;
|
|
final int storage;
|
|
final String originalTransactionID;
|
|
final String originalTransactionID;
|
|
@@ -17,7 +16,6 @@ class Subscription {
|
|
final Attributes attributes;
|
|
final Attributes attributes;
|
|
|
|
|
|
Subscription({
|
|
Subscription({
|
|
- this.id,
|
|
|
|
this.productID,
|
|
this.productID,
|
|
this.storage,
|
|
this.storage,
|
|
this.originalTransactionID,
|
|
this.originalTransactionID,
|
|
@@ -41,7 +39,6 @@ class Subscription {
|
|
throw ArgumentError("argument is null");
|
|
throw ArgumentError("argument is null");
|
|
}
|
|
}
|
|
return Subscription(
|
|
return Subscription(
|
|
- id: map['id'],
|
|
|
|
productID: map['productID'],
|
|
productID: map['productID'],
|
|
storage: map['storage'],
|
|
storage: map['storage'],
|
|
originalTransactionID: map['originalTransactionID'],
|
|
originalTransactionID: map['originalTransactionID'],
|