copyWith method

WebApiModulesExportsOrderExportOrderExportResponse copyWith({
  1. String? batchId,
  2. String? batchNumber,
  3. String? downloadUrl,
})

Implementation

WebApiModulesExportsOrderExportOrderExportResponse copyWith(
    {String? batchId, String? batchNumber, String? downloadUrl}) {
  return WebApiModulesExportsOrderExportOrderExportResponse(
      batchId: batchId ?? this.batchId,
      batchNumber: batchNumber ?? this.batchNumber,
      downloadUrl: downloadUrl ?? this.downloadUrl);
}