copyWithWrapped method

Implementation

WebApiModulesContainersContainerLookupScannableItemRentalInventoryResponse
copyWithWrapped({
  Wrapped<String?>? inventoryId,
  Wrapped<String?>? description,
}) {
  return WebApiModulesContainersContainerLookupScannableItemRentalInventoryResponse(
    inventoryId: (inventoryId != null ? inventoryId.value : this.inventoryId),
    description: (description != null ? description.value : this.description),
  );
}