copyWith method

WebApiModulesReportsBillingBillingAnalysisReportBillingAnalysisReportRequest copyWith({
  1. DateTime? fromDate,
  2. DateTime? toDate,
  3. String? dateType,
  4. String? officeLocationId,
  5. String? customerId,
  6. String? dealId,
  7. String? projectId,
  8. String? agentId,
  9. List<FwStandardModelsSelectedCheckBoxListItem>? status,
  10. List<FwStandardModelsSelectedCheckBoxListItem>? includeFilter,
  11. List<FwStandardModelsSelectedCheckBoxListItem>? includeTaxFilter,
  12. bool? excludeOrdersBilledInTotal,
  13. bool? includeProjectStatus,
  14. bool? includeCreditsInvoiced,
  15. String? customReportLayoutId,
  16. bool? isSummary,
  17. bool? includeSubHeadingsAndSubTotals,
  18. bool? includeIdColumns,
  19. String? locale,
  20. List<FwStandardModelsCheckBoxListItem>? excelfields,
})

Implementation

WebApiModulesReportsBillingBillingAnalysisReportBillingAnalysisReportRequest
    copyWith(
        {DateTime? fromDate,
        DateTime? toDate,
        String? dateType,
        String? officeLocationId,
        String? customerId,
        String? dealId,
        String? projectId,
        String? agentId,
        List<FwStandardModelsSelectedCheckBoxListItem>? status,
        List<FwStandardModelsSelectedCheckBoxListItem>? includeFilter,
        List<FwStandardModelsSelectedCheckBoxListItem>? includeTaxFilter,
        bool? excludeOrdersBilledInTotal,
        bool? includeProjectStatus,
        bool? includeCreditsInvoiced,
        String? customReportLayoutId,
        bool? isSummary,
        bool? includeSubHeadingsAndSubTotals,
        bool? includeIdColumns,
        String? locale,
        List<FwStandardModelsCheckBoxListItem>? excelfields}) {
  return WebApiModulesReportsBillingBillingAnalysisReportBillingAnalysisReportRequest(
      fromDate: fromDate ?? this.fromDate,
      toDate: toDate ?? this.toDate,
      dateType: dateType ?? this.dateType,
      officeLocationId: officeLocationId ?? this.officeLocationId,
      customerId: customerId ?? this.customerId,
      dealId: dealId ?? this.dealId,
      projectId: projectId ?? this.projectId,
      agentId: agentId ?? this.agentId,
      status: status ?? this.status,
      includeFilter: includeFilter ?? this.includeFilter,
      includeTaxFilter: includeTaxFilter ?? this.includeTaxFilter,
      excludeOrdersBilledInTotal:
          excludeOrdersBilledInTotal ?? this.excludeOrdersBilledInTotal,
      includeProjectStatus: includeProjectStatus ?? this.includeProjectStatus,
      includeCreditsInvoiced:
          includeCreditsInvoiced ?? this.includeCreditsInvoiced,
      customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
      isSummary: isSummary ?? this.isSummary,
      includeSubHeadingsAndSubTotals: includeSubHeadingsAndSubTotals ??
          this.includeSubHeadingsAndSubTotals,
      includeIdColumns: includeIdColumns ?? this.includeIdColumns,
      locale: locale ?? this.locale,
      excelfields: excelfields ?? this.excelfields);
}