copyWith method

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

Implementation

WebApiModulesReportsFixedAssetDepreciationReportFixedAssetDepreciationReportRequest
    copyWith(
        {DateTime? fromDate,
        DateTime? toDate,
        String? warehouseId,
        String? inventoryTypeId,
        String? categoryId,
        String? subCategoryId,
        String? inventoryId,
        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 WebApiModulesReportsFixedAssetDepreciationReportFixedAssetDepreciationReportRequest(
      fromDate: fromDate ?? this.fromDate,
      toDate: toDate ?? this.toDate,
      warehouseId: warehouseId ?? this.warehouseId,
      inventoryTypeId: inventoryTypeId ?? this.inventoryTypeId,
      categoryId: categoryId ?? this.categoryId,
      subCategoryId: subCategoryId ?? this.subCategoryId,
      inventoryId: inventoryId ?? this.inventoryId,
      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);
}