copyWithWrapped method

WebApiModulesReportsWarehouseReportsContainerPackingListContainerPackingListRequest copyWithWrapped({
  1. Wrapped<String?>? containerItemId,
  2. Wrapped<String?>? appLanguageId,
  3. Wrapped<String?>? userDepartmentId,
  4. Wrapped<String?>? userLocationId,
  5. Wrapped<String?>? userWarehouseId,
  6. Wrapped<String?>? customReportLayoutId,
  7. Wrapped<bool?>? isSummary,
  8. Wrapped<bool?>? includeSubHeadingsAndSubTotals,
  9. Wrapped<bool?>? includeIdColumns,
  10. Wrapped<String?>? locale,
  11. Wrapped<List<FwStandardModelsCheckBoxListItem>?>? excelfields,
  12. Wrapped<String?>? reportName,
  13. Wrapped<bool?>? useEmailTemplate,
})

Implementation

WebApiModulesReportsWarehouseReportsContainerPackingListContainerPackingListRequest
    copyWithWrapped(
        {Wrapped<String?>? containerItemId,
        Wrapped<String?>? appLanguageId,
        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 WebApiModulesReportsWarehouseReportsContainerPackingListContainerPackingListRequest(
      containerItemId: (containerItemId != null
          ? containerItemId.value
          : this.containerItemId),
      appLanguageId:
          (appLanguageId != null ? appLanguageId.value : this.appLanguageId),
      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));
}