copyWith method
Implementation
WebApiModulesReportsChargeProcessingReportsReceiptBatchReportReceiptBatchReportRequest
copyWith(
{String? batchId,
String? batchNumber,
DateTime? batchDate,
String? customReportLayoutId,
bool? isSummary,
bool? includeSubHeadingsAndSubTotals,
bool? includeIdColumns,
String? locale,
List<FwStandardModelsCheckBoxListItem>? excelfields}) {
return WebApiModulesReportsChargeProcessingReportsReceiptBatchReportReceiptBatchReportRequest(
batchId: batchId ?? this.batchId,
batchNumber: batchNumber ?? this.batchNumber,
batchDate: batchDate ?? this.batchDate,
customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
isSummary: isSummary ?? this.isSummary,
includeSubHeadingsAndSubTotals: includeSubHeadingsAndSubTotals ??
this.includeSubHeadingsAndSubTotals,
includeIdColumns: includeIdColumns ?? this.includeIdColumns,
locale: locale ?? this.locale,
excelfields: excelfields ?? this.excelfields);
}