toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final acknowledgementState = this.acknowledgementState;
final kind = this.kind;
final obfuscatedExternalAccountId = this.obfuscatedExternalAccountId;
final obfuscatedExternalProfileId = this.obfuscatedExternalProfileId;
final orderId = this.orderId;
final productLineItem = this.productLineItem;
final purchaseCompletionTime = this.purchaseCompletionTime;
final purchaseStateContext = this.purchaseStateContext;
final regionCode = this.regionCode;
final testPurchaseContext = this.testPurchaseContext;
return {
'acknowledgementState': ?acknowledgementState,
'kind': ?kind,
'obfuscatedExternalAccountId': ?obfuscatedExternalAccountId,
'obfuscatedExternalProfileId': ?obfuscatedExternalProfileId,
'orderId': ?orderId,
'productLineItem': ?productLineItem,
'purchaseCompletionTime': ?purchaseCompletionTime,
'purchaseStateContext': ?purchaseStateContext,
'regionCode': ?regionCode,
'testPurchaseContext': ?testPurchaseContext,
};
}