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? customReportLayoutId,
  17. bool? isSummary,
  18. bool? includeSubHeadingsAndSubTotals,
  19. bool? includeIdColumns,
  20. String? locale,
  21. List<FwStandardModelsCheckBoxListItem>? excelfields,
})

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? customReportLayoutId,
        bool? isSummary,
        bool? includeSubHeadingsAndSubTotals,
        bool? includeIdColumns,
        String? locale,
        List<FwStandardModelsCheckBoxListItem>? excelfields}) {
  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,
      customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
      isSummary: isSummary ?? this.isSummary,
      includeSubHeadingsAndSubTotals: includeSubHeadingsAndSubTotals ??
          this.includeSubHeadingsAndSubTotals,
      includeIdColumns: includeIdColumns ?? this.includeIdColumns,
      locale: locale ?? this.locale,
      excelfields: excelfields ?? this.excelfields);
}