copyWith method
WebApiModulesUtilitiesMigrateSelectAllNoneMigrateItemRequest
copyWith(
{ - String? sessionId,
- bool? selectAll,
- String? inventoryTypeId,
- String? categoryId,
- String? subCategoryId,
- String? warehouseId,
- String? inventoryId,
- String? vendorId,
- String? description,
- String? barCode,
})
Implementation
WebApiModulesUtilitiesMigrateSelectAllNoneMigrateItemRequest copyWith({
String? sessionId,
bool? selectAll,
String? inventoryTypeId,
String? categoryId,
String? subCategoryId,
String? warehouseId,
String? inventoryId,
String? vendorId,
String? description,
String? barCode,
}) {
return WebApiModulesUtilitiesMigrateSelectAllNoneMigrateItemRequest(
sessionId: sessionId ?? this.sessionId,
selectAll: selectAll ?? this.selectAll,
inventoryTypeId: inventoryTypeId ?? this.inventoryTypeId,
categoryId: categoryId ?? this.categoryId,
subCategoryId: subCategoryId ?? this.subCategoryId,
warehouseId: warehouseId ?? this.warehouseId,
inventoryId: inventoryId ?? this.inventoryId,
vendorId: vendorId ?? this.vendorId,
description: description ?? this.description,
barCode: barCode ?? this.barCode,
);
}