RecipeListState

data class RecipeListState(val recipeList: List<Recipe> = listOf())

Data class representing the state of the Recipe list.

Constructors

Link copied to clipboard
constructor(recipeList: List<Recipe> = listOf())

Properties

Link copied to clipboard

The list of Recipe items.