copyWith method

Implementation

WebApiModulesContainersContainerLookupScannableItemRentalInventoryResponse
copyWith({String? inventoryId, String? description}) {
  return WebApiModulesContainersContainerLookupScannableItemRentalInventoryResponse(
    inventoryId: inventoryId ?? this.inventoryId,
    description: description ?? this.description,
  );
}