toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final conversionAction = this.conversionAction;
final currencyCode = this.currencyCode;
final customValue = this.customValue;
final itemAttribute = this.itemAttribute;
final orderId = this.orderId;
final storeAttribute = this.storeAttribute;
final transactionAmountMicros = this.transactionAmountMicros;
final transactionDateTime = this.transactionDateTime;
return {
'conversionAction': ?conversionAction,
'currencyCode': ?currencyCode,
'customValue': ?customValue,
'itemAttribute': ?itemAttribute,
'orderId': ?orderId,
'storeAttribute': ?storeAttribute,
'transactionAmountMicros': ?transactionAmountMicros,
'transactionDateTime': ?transactionDateTime,
};
}