copyWith method

WebApiModulesReportsBillingBillingProgressReportBillingProgressReportRequest copyWith({
  1. DateTime? asOfDate,
  2. List<FwStandardModelsSelectedCheckBoxListItem>? statuses,
  3. bool? includeCredits,
  4. bool? excludeBilled100,
  5. String? officeLocationId,
  6. String? departmentId,
  7. String? dealCsrId,
  8. String? customerId,
  9. String? dealTypeId,
  10. String? dealId,
  11. String? agentId,
  12. String? userDepartmentId,
  13. String? userLocationId,
  14. String? userWarehouseId,
  15. String? customReportLayoutId,
  16. bool? isSummary,
  17. bool? includeSubHeadingsAndSubTotals,
  18. bool? includeIdColumns,
  19. String? locale,
  20. List<FwStandardModelsCheckBoxListItem>? excelfields,
  21. String? reportName,
  22. bool? useEmailTemplate,
})

Implementation

WebApiModulesReportsBillingBillingProgressReportBillingProgressReportRequest
    copyWith(
        {DateTime? asOfDate,
        List<FwStandardModelsSelectedCheckBoxListItem>? statuses,
        bool? includeCredits,
        bool? excludeBilled100,
        String? officeLocationId,
        String? departmentId,
        String? dealCsrId,
        String? customerId,
        String? dealTypeId,
        String? dealId,
        String? agentId,
        String? userDepartmentId,
        String? userLocationId,
        String? userWarehouseId,
        String? customReportLayoutId,
        bool? isSummary,
        bool? includeSubHeadingsAndSubTotals,
        bool? includeIdColumns,
        String? locale,
        List<FwStandardModelsCheckBoxListItem>? excelfields,
        String? reportName,
        bool? useEmailTemplate}) {
  return WebApiModulesReportsBillingBillingProgressReportBillingProgressReportRequest(
      asOfDate: asOfDate ?? this.asOfDate,
      statuses: statuses ?? this.statuses,
      includeCredits: includeCredits ?? this.includeCredits,
      excludeBilled100: excludeBilled100 ?? this.excludeBilled100,
      officeLocationId: officeLocationId ?? this.officeLocationId,
      departmentId: departmentId ?? this.departmentId,
      dealCsrId: dealCsrId ?? this.dealCsrId,
      customerId: customerId ?? this.customerId,
      dealTypeId: dealTypeId ?? this.dealTypeId,
      dealId: dealId ?? this.dealId,
      agentId: agentId ?? this.agentId,
      userDepartmentId: userDepartmentId ?? this.userDepartmentId,
      userLocationId: userLocationId ?? this.userLocationId,
      userWarehouseId: userWarehouseId ?? this.userWarehouseId,
      customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
      isSummary: isSummary ?? this.isSummary,
      includeSubHeadingsAndSubTotals: includeSubHeadingsAndSubTotals ??
          this.includeSubHeadingsAndSubTotals,
      includeIdColumns: includeIdColumns ?? this.includeIdColumns,
      locale: locale ?? this.locale,
      excelfields: excelfields ?? this.excelfields,
      reportName: reportName ?? this.reportName,
      useEmailTemplate: useEmailTemplate ?? this.useEmailTemplate);
}