copyWith method
WebApiModulesReportsRepairOrderReportsRepairOrderStatusReportRepairOrderStatusReportRequest
copyWith({
- List<
FwStandardModelsSelectedCheckBoxListItem> ? repairOrderStatus, - List<
FwStandardModelsSelectedCheckBoxListItem> ? priority, - bool? billable,
- bool? billed,
- bool? owned,
- int? daysInRepair,
- String? daysInRepairFilterMode,
- bool? includeOutsideRepairsOnly,
- bool? includeDamageNotes,
- String? warehouseId,
- String? departmentId,
- String? inventoryTypeId,
- String? categoryId,
- String? subCategoryId,
- String? inventoryId,
- String? repairItemStatusId,
- String? vendorId,
- String? vendorRepairItemStatusId,
- String? dealId,
- String? customReportLayoutId,
- bool? isSummary,
- bool? includeSubHeadingsAndSubTotals,
- bool? includeIdColumns,
- String? locale,
- List<
FwStandardModelsCheckBoxListItem> ? excelfields,
Implementation
WebApiModulesReportsRepairOrderReportsRepairOrderStatusReportRepairOrderStatusReportRequest
copyWith(
{List<FwStandardModelsSelectedCheckBoxListItem>? repairOrderStatus,
List<FwStandardModelsSelectedCheckBoxListItem>? priority,
bool? billable,
bool? billed,
bool? owned,
int? daysInRepair,
String? daysInRepairFilterMode,
bool? includeOutsideRepairsOnly,
bool? includeDamageNotes,
String? warehouseId,
String? departmentId,
String? inventoryTypeId,
String? categoryId,
String? subCategoryId,
String? inventoryId,
String? repairItemStatusId,
String? vendorId,
String? vendorRepairItemStatusId,
String? dealId,
String? customReportLayoutId,
bool? isSummary,
bool? includeSubHeadingsAndSubTotals,
bool? includeIdColumns,
String? locale,
List<FwStandardModelsCheckBoxListItem>? excelfields}) {
return WebApiModulesReportsRepairOrderReportsRepairOrderStatusReportRepairOrderStatusReportRequest(
repairOrderStatus: repairOrderStatus ?? this.repairOrderStatus,
priority: priority ?? this.priority,
billable: billable ?? this.billable,
billed: billed ?? this.billed,
owned: owned ?? this.owned,
daysInRepair: daysInRepair ?? this.daysInRepair,
daysInRepairFilterMode:
daysInRepairFilterMode ?? this.daysInRepairFilterMode,
includeOutsideRepairsOnly:
includeOutsideRepairsOnly ?? this.includeOutsideRepairsOnly,
includeDamageNotes: includeDamageNotes ?? this.includeDamageNotes,
warehouseId: warehouseId ?? this.warehouseId,
departmentId: departmentId ?? this.departmentId,
inventoryTypeId: inventoryTypeId ?? this.inventoryTypeId,
categoryId: categoryId ?? this.categoryId,
subCategoryId: subCategoryId ?? this.subCategoryId,
inventoryId: inventoryId ?? this.inventoryId,
repairItemStatusId: repairItemStatusId ?? this.repairItemStatusId,
vendorId: vendorId ?? this.vendorId,
vendorRepairItemStatusId:
vendorRepairItemStatusId ?? this.vendorRepairItemStatusId,
dealId: dealId ?? this.dealId,
customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
isSummary: isSummary ?? this.isSummary,
includeSubHeadingsAndSubTotals: includeSubHeadingsAndSubTotals ??
this.includeSubHeadingsAndSubTotals,
includeIdColumns: includeIdColumns ?? this.includeIdColumns,
locale: locale ?? this.locale,
excelfields: excelfields ?? this.excelfields);
}