copyWithWrapped method

WebApiModulesReportsWarehouseReportsTransferOrderReportTransferOrderReportRequest copyWithWrapped({
  1. Wrapped<String?>? transferId,
  2. Wrapped<WebApiModulesReportsOrderReportsOrderReportReportViewType?>? reportView,
  3. Wrapped<String?>? customReportLayoutId,
  4. Wrapped<bool?>? isSummary,
  5. Wrapped<bool?>? includeSubHeadingsAndSubTotals,
  6. Wrapped<bool?>? includeIdColumns,
  7. Wrapped<String?>? locale,
  8. Wrapped<List<FwStandardModelsCheckBoxListItem>?>? excelfields,
})

Implementation

WebApiModulesReportsWarehouseReportsTransferOrderReportTransferOrderReportRequest
    copyWithWrapped(
        {Wrapped<String?>? transferId,
        Wrapped<
                enums
                    .WebApiModulesReportsOrderReportsOrderReportReportViewType?>?
            reportView,
        Wrapped<String?>? customReportLayoutId,
        Wrapped<bool?>? isSummary,
        Wrapped<bool?>? includeSubHeadingsAndSubTotals,
        Wrapped<bool?>? includeIdColumns,
        Wrapped<String?>? locale,
        Wrapped<List<FwStandardModelsCheckBoxListItem>?>? excelfields}) {
  return WebApiModulesReportsWarehouseReportsTransferOrderReportTransferOrderReportRequest(
      transferId: (transferId != null ? transferId.value : this.transferId),
      reportView: (reportView != null ? reportView.value : this.reportView),
      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));
}