copyWithWrapped method

WebApiModulesReportsBillingProjectManagerBillingReportProjectManagerBillingReportRequest copyWithWrapped({
  1. Wrapped<DateTime?>? fromDate,
  2. Wrapped<DateTime?>? toDate,
  3. Wrapped<String?>? dateType,
  4. Wrapped<bool?>? includeNoCharge,
  5. Wrapped<String?>? officeLocationId,
  6. Wrapped<String?>? departmentId,
  7. Wrapped<String?>? projectManagerId,
  8. Wrapped<String?>? customerId,
  9. Wrapped<String?>? dealId,
  10. Wrapped<String?>? customReportLayoutId,
  11. Wrapped<bool?>? isSummary,
  12. Wrapped<bool?>? includeSubHeadingsAndSubTotals,
  13. Wrapped<bool?>? includeIdColumns,
  14. Wrapped<String?>? locale,
  15. Wrapped<List<FwStandardModelsCheckBoxListItem>?>? excelfields,
})

Implementation

WebApiModulesReportsBillingProjectManagerBillingReportProjectManagerBillingReportRequest
    copyWithWrapped(
        {Wrapped<DateTime?>? fromDate,
        Wrapped<DateTime?>? toDate,
        Wrapped<String?>? dateType,
        Wrapped<bool?>? includeNoCharge,
        Wrapped<String?>? officeLocationId,
        Wrapped<String?>? departmentId,
        Wrapped<String?>? projectManagerId,
        Wrapped<String?>? customerId,
        Wrapped<String?>? dealId,
        Wrapped<String?>? customReportLayoutId,
        Wrapped<bool?>? isSummary,
        Wrapped<bool?>? includeSubHeadingsAndSubTotals,
        Wrapped<bool?>? includeIdColumns,
        Wrapped<String?>? locale,
        Wrapped<List<FwStandardModelsCheckBoxListItem>?>? excelfields}) {
  return WebApiModulesReportsBillingProjectManagerBillingReportProjectManagerBillingReportRequest(
      fromDate: (fromDate != null ? fromDate.value : this.fromDate),
      toDate: (toDate != null ? toDate.value : this.toDate),
      dateType: (dateType != null ? dateType.value : this.dateType),
      includeNoCharge: (includeNoCharge != null
          ? includeNoCharge.value
          : this.includeNoCharge),
      officeLocationId: (officeLocationId != null
          ? officeLocationId.value
          : this.officeLocationId),
      departmentId:
          (departmentId != null ? departmentId.value : this.departmentId),
      projectManagerId: (projectManagerId != null
          ? projectManagerId.value
          : this.projectManagerId),
      customerId: (customerId != null ? customerId.value : this.customerId),
      dealId: (dealId != null ? dealId.value : this.dealId),
      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));
}