copyWith method

WebApiModulesReportsChargeProcessingReportsReceiptBatchReportReceiptBatchReportRequest copyWith({
  1. String? batchId,
  2. String? batchNumber,
  3. DateTime? batchDate,
  4. String? customReportLayoutId,
  5. bool? isSummary,
  6. bool? includeSubHeadingsAndSubTotals,
  7. bool? includeIdColumns,
  8. String? locale,
  9. List<FwStandardModelsCheckBoxListItem>? excelfields,
})

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);
}