HistoryState
data class HistoryState(val loading: Boolean = true, val items: List<AiGenerationResult> = emptyList(), val error: String? = null) : MviState(source)
Carries HistoryState data through the SDAI presentation layer.
Author
Dmitriy Moroz
Constructors
Link copied to clipboard
constructor(loading: Boolean = true, items: List<AiGenerationResult> = emptyList(), error: String? = null)