copyWithWrapped method

Implementation

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