copyWith method
Implementation
WebApiModulesExportsInvoiceBatchExportInvoiceBatchExportResponse copyWith(
{String? batchId,
String? batchNumber,
String? downloadUrl,
bool? success,
String? message}) {
return WebApiModulesExportsInvoiceBatchExportInvoiceBatchExportResponse(
batchId: batchId ?? this.batchId,
batchNumber: batchNumber ?? this.batchNumber,
downloadUrl: downloadUrl ?? this.downloadUrl,
success: success ?? this.success,
message: message ?? this.message);
}