copyWith method

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

Implementation

WebApiModulesReportsOrderReportsOrderConflictReportOrderConflictReportRequest
    copyWith(
        {DateTime? fromDate,
        DateTime? toDate,
        String? availableFor,
        String? conflictType,
        String? warehouseId,
        String? departmentId,
        String? dealId,
        String? orderId,
        String? inventoryTypeId,
        String? categoryId,
        String? subCategoryId,
        String? inventoryId,
        List<FwStandardModelsSelectedCheckBoxListItem>? classifications,
        List<FwStandardModelsSelectedCheckBoxListItem>? ranks,
        List<FwStandardModelsSelectedCheckBoxListItem>? trackedBys,
        String? userDepartmentId,
        String? userLocationId,
        String? userWarehouseId,
        String? customReportLayoutId,
        bool? isSummary,
        bool? includeSubHeadingsAndSubTotals,
        bool? includeIdColumns,
        String? locale,
        List<FwStandardModelsCheckBoxListItem>? excelfields,
        String? reportName,
        bool? useEmailTemplate}) {
  return WebApiModulesReportsOrderReportsOrderConflictReportOrderConflictReportRequest(
      fromDate: fromDate ?? this.fromDate,
      toDate: toDate ?? this.toDate,
      availableFor: availableFor ?? this.availableFor,
      conflictType: conflictType ?? this.conflictType,
      warehouseId: warehouseId ?? this.warehouseId,
      departmentId: departmentId ?? this.departmentId,
      dealId: dealId ?? this.dealId,
      orderId: orderId ?? this.orderId,
      inventoryTypeId: inventoryTypeId ?? this.inventoryTypeId,
      categoryId: categoryId ?? this.categoryId,
      subCategoryId: subCategoryId ?? this.subCategoryId,
      inventoryId: inventoryId ?? this.inventoryId,
      classifications: classifications ?? this.classifications,
      ranks: ranks ?? this.ranks,
      trackedBys: trackedBys ?? this.trackedBys,
      userDepartmentId: userDepartmentId ?? this.userDepartmentId,
      userLocationId: userLocationId ?? this.userLocationId,
      userWarehouseId: userWarehouseId ?? this.userWarehouseId,
      customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
      isSummary: isSummary ?? this.isSummary,
      includeSubHeadingsAndSubTotals: includeSubHeadingsAndSubTotals ??
          this.includeSubHeadingsAndSubTotals,
      includeIdColumns: includeIdColumns ?? this.includeIdColumns,
      locale: locale ?? this.locale,
      excelfields: excelfields ?? this.excelfields,
      reportName: reportName ?? this.reportName,
      useEmailTemplate: useEmailTemplate ?? this.useEmailTemplate);
}