toJson method

Map<String, dynamic> toJson()

Implementation

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