toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final batchId = this.batchId;
  final localInventory = this.localInventory;
  final merchantId = this.merchantId;
  final method = this.method;
  final productId = this.productId;
  return {
    'batchId': ?batchId,
    'localInventory': ?localInventory,
    'merchantId': ?merchantId,
    'method': ?method,
    'productId': ?productId,
  };
}