copyWithWrapped method

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

Implementation

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