copyWithWrapped method
Implementation
WebApiModulesInventoryContainerItemEmptyContainerRequest copyWithWrapped({
Wrapped<String?>? itemId,
Wrapped<String?>? warehouseId,
Wrapped<bool?>? deleteAll,
Wrapped<bool?>? voidTheFill,
}) {
return WebApiModulesInventoryContainerItemEmptyContainerRequest(
itemId: (itemId != null ? itemId.value : this.itemId),
warehouseId: (warehouseId != null ? warehouseId.value : this.warehouseId),
deleteAll: (deleteAll != null ? deleteAll.value : this.deleteAll),
voidTheFill: (voidTheFill != null ? voidTheFill.value : this.voidTheFill),
);
}