copyWithWrapped method

WebApiModulesReportsOrderValueSheetReportOrderValueSheetReportRequest copyWithWrapped({
  1. Wrapped<String?>? orderId,
  2. Wrapped<String?>? quoteId,
  3. Wrapped<String?>? projectId,
  4. Wrapped<String?>? rentalValue,
  5. Wrapped<bool?>? weightInCase,
  6. Wrapped<bool?>? excludeZeroValueItems,
  7. Wrapped<String?>? filterBy,
  8. Wrapped<bool?>? groupByShippingCase,
  9. Wrapped<String?>? outContractId,
  10. Wrapped<String?>? orderType,
  11. Wrapped<String?>? userDepartmentId,
  12. Wrapped<String?>? userLocationId,
  13. Wrapped<String?>? userWarehouseId,
  14. Wrapped<String?>? customReportLayoutId,
  15. Wrapped<bool?>? isSummary,
  16. Wrapped<bool?>? includeSubHeadingsAndSubTotals,
  17. Wrapped<bool?>? includeIdColumns,
  18. Wrapped<String?>? locale,
  19. Wrapped<List<FwStandardModelsCheckBoxListItem>?>? excelfields,
  20. Wrapped<String?>? reportName,
  21. Wrapped<bool?>? useEmailTemplate,
})

Implementation

WebApiModulesReportsOrderValueSheetReportOrderValueSheetReportRequest
copyWithWrapped({
  Wrapped<String?>? orderId,
  Wrapped<String?>? quoteId,
  Wrapped<String?>? projectId,
  Wrapped<String?>? rentalValue,
  Wrapped<bool?>? weightInCase,
  Wrapped<bool?>? excludeZeroValueItems,
  Wrapped<String?>? filterBy,
  Wrapped<bool?>? groupByShippingCase,
  Wrapped<String?>? outContractId,
  Wrapped<String?>? orderType,
  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 WebApiModulesReportsOrderValueSheetReportOrderValueSheetReportRequest(
    orderId: (orderId != null ? orderId.value : this.orderId),
    quoteId: (quoteId != null ? quoteId.value : this.quoteId),
    projectId: (projectId != null ? projectId.value : this.projectId),
    rentalValue: (rentalValue != null ? rentalValue.value : this.rentalValue),
    weightInCase: (weightInCase != null
        ? weightInCase.value
        : this.weightInCase),
    excludeZeroValueItems: (excludeZeroValueItems != null
        ? excludeZeroValueItems.value
        : this.excludeZeroValueItems),
    filterBy: (filterBy != null ? filterBy.value : this.filterBy),
    groupByShippingCase: (groupByShippingCase != null
        ? groupByShippingCase.value
        : this.groupByShippingCase),
    outContractId: (outContractId != null
        ? outContractId.value
        : this.outContractId),
    orderType: (orderType != null ? orderType.value : this.orderType),
    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),
  );
}