copyWithWrapped method

WebApiModulesReportsOrderReportsOrderConflictReportOrderConflictReportRequest copyWithWrapped({
  1. Wrapped<DateTime?>? fromDate,
  2. Wrapped<DateTime?>? toDate,
  3. Wrapped<String?>? availableFor,
  4. Wrapped<String?>? conflictType,
  5. Wrapped<String?>? warehouseId,
  6. Wrapped<String?>? departmentId,
  7. Wrapped<String?>? dealId,
  8. Wrapped<String?>? orderId,
  9. Wrapped<String?>? inventoryTypeId,
  10. Wrapped<String?>? categoryId,
  11. Wrapped<String?>? subCategoryId,
  12. Wrapped<String?>? inventoryId,
  13. Wrapped<List<FwStandardModelsSelectedCheckBoxListItem>?>? classifications,
  14. Wrapped<String?>? ranks,
  15. Wrapped<List<FwStandardModelsSelectedCheckBoxListItem>?>? trackedBys,
  16. Wrapped<bool?>? refreshIfNeeded,
  17. Wrapped<String?>? userDepartmentId,
  18. Wrapped<String?>? userLocationId,
  19. Wrapped<String?>? userWarehouseId,
  20. Wrapped<String?>? customReportLayoutId,
  21. Wrapped<bool?>? isSummary,
  22. Wrapped<bool?>? includeSubHeadingsAndSubTotals,
  23. Wrapped<bool?>? includeIdColumns,
  24. Wrapped<String?>? locale,
  25. Wrapped<List<FwStandardModelsCheckBoxListItem>?>? excelfields,
  26. Wrapped<String?>? reportName,
  27. Wrapped<bool?>? useEmailTemplate,
})

Implementation

WebApiModulesReportsOrderReportsOrderConflictReportOrderConflictReportRequest
copyWithWrapped({
  Wrapped<DateTime?>? fromDate,
  Wrapped<DateTime?>? toDate,
  Wrapped<String?>? availableFor,
  Wrapped<String?>? conflictType,
  Wrapped<String?>? warehouseId,
  Wrapped<String?>? departmentId,
  Wrapped<String?>? dealId,
  Wrapped<String?>? orderId,
  Wrapped<String?>? inventoryTypeId,
  Wrapped<String?>? categoryId,
  Wrapped<String?>? subCategoryId,
  Wrapped<String?>? inventoryId,
  Wrapped<List<FwStandardModelsSelectedCheckBoxListItem>?>? classifications,
  Wrapped<String?>? ranks,
  Wrapped<List<FwStandardModelsSelectedCheckBoxListItem>?>? trackedBys,
  Wrapped<bool?>? refreshIfNeeded,
  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 WebApiModulesReportsOrderReportsOrderConflictReportOrderConflictReportRequest(
    fromDate: (fromDate != null ? fromDate.value : this.fromDate),
    toDate: (toDate != null ? toDate.value : this.toDate),
    availableFor: (availableFor != null
        ? availableFor.value
        : this.availableFor),
    conflictType: (conflictType != null
        ? conflictType.value
        : this.conflictType),
    warehouseId: (warehouseId != null ? warehouseId.value : this.warehouseId),
    departmentId: (departmentId != null
        ? departmentId.value
        : this.departmentId),
    dealId: (dealId != null ? dealId.value : this.dealId),
    orderId: (orderId != null ? orderId.value : this.orderId),
    inventoryTypeId: (inventoryTypeId != null
        ? inventoryTypeId.value
        : this.inventoryTypeId),
    categoryId: (categoryId != null ? categoryId.value : this.categoryId),
    subCategoryId: (subCategoryId != null
        ? subCategoryId.value
        : this.subCategoryId),
    inventoryId: (inventoryId != null ? inventoryId.value : this.inventoryId),
    classifications: (classifications != null
        ? classifications.value
        : this.classifications),
    ranks: (ranks != null ? ranks.value : this.ranks),
    trackedBys: (trackedBys != null ? trackedBys.value : this.trackedBys),
    refreshIfNeeded: (refreshIfNeeded != null
        ? refreshIfNeeded.value
        : this.refreshIfNeeded),
    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),
  );
}