copyWithWrapped method

WebApiModulesReportsWarehouseReportsStorageContainerLabelStorageContainerLabelRequest copyWithWrapped({
  1. Wrapped<String?>? orderId,
  2. Wrapped<String?>? printedByUsersId,
  3. Wrapped<String?>? storageContainerItemId,
  4. Wrapped<String?>? customReportLayoutId,
  5. Wrapped<bool?>? isSummary,
  6. Wrapped<bool?>? includeSubHeadingsAndSubTotals,
  7. Wrapped<bool?>? includeIdColumns,
  8. Wrapped<String?>? locale,
  9. Wrapped<List<FwStandardModelsCheckBoxListItem>?>? excelfields,
})

Implementation

WebApiModulesReportsWarehouseReportsStorageContainerLabelStorageContainerLabelRequest
    copyWithWrapped(
        {Wrapped<String?>? orderId,
        Wrapped<String?>? printedByUsersId,
        Wrapped<String?>? storageContainerItemId,
        Wrapped<String?>? customReportLayoutId,
        Wrapped<bool?>? isSummary,
        Wrapped<bool?>? includeSubHeadingsAndSubTotals,
        Wrapped<bool?>? includeIdColumns,
        Wrapped<String?>? locale,
        Wrapped<List<FwStandardModelsCheckBoxListItem>?>? excelfields}) {
  return WebApiModulesReportsWarehouseReportsStorageContainerLabelStorageContainerLabelRequest(
      orderId: (orderId != null ? orderId.value : this.orderId),
      printedByUsersId: (printedByUsersId != null
          ? printedByUsersId.value
          : this.printedByUsersId),
      storageContainerItemId: (storageContainerItemId != null
          ? storageContainerItemId.value
          : this.storageContainerItemId),
      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));
}