toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final batchId = this.batchId;
final inventory = this.inventory;
final merchantId = this.merchantId;
final method = this.method;
final sale = this.sale;
final store = this.store;
final storeCode = this.storeCode;
final targetMerchantId = this.targetMerchantId;
return {
'batchId': ?batchId,
'inventory': ?inventory,
'merchantId': ?merchantId,
'method': ?method,
'sale': ?sale,
'store': ?store,
'storeCode': ?storeCode,
'targetMerchantId': ?targetMerchantId,
};
}