toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final currentPreTaxAmount = this.currentPreTaxAmount;
final currentTaxAmount = this.currentTaxAmount;
final externalOfferDetails = this.externalOfferDetails;
final externalTransactionId = this.externalTransactionId;
final oneTimeTransaction = this.oneTimeTransaction;
final originalPreTaxAmount = this.originalPreTaxAmount;
final originalTaxAmount = this.originalTaxAmount;
final packageName = this.packageName;
final recurringTransaction = this.recurringTransaction;
final testPurchase = this.testPurchase;
final transactionProgramCode = this.transactionProgramCode;
final transactionState = this.transactionState;
final transactionTime = this.transactionTime;
final userTaxAddress = this.userTaxAddress;
return {
'createTime': ?createTime,
'currentPreTaxAmount': ?currentPreTaxAmount,
'currentTaxAmount': ?currentTaxAmount,
'externalOfferDetails': ?externalOfferDetails,
'externalTransactionId': ?externalTransactionId,
'oneTimeTransaction': ?oneTimeTransaction,
'originalPreTaxAmount': ?originalPreTaxAmount,
'originalTaxAmount': ?originalTaxAmount,
'packageName': ?packageName,
'recurringTransaction': ?recurringTransaction,
'testPurchase': ?testPurchase,
'transactionProgramCode': ?transactionProgramCode,
'transactionState': ?transactionState,
'transactionTime': ?transactionTime,
'userTaxAddress': ?userTaxAddress,
};
}