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