mutate
fun <TModel : Any, TDependency> Action<TModel, TDependency>.mutate(model: TModel? = null): Action.Next<TModel, TDependency>
Shorthand for returning an action result with optional model changes only.
For example:
data object OnDetailsExpandClick : HelpScreenAction {
override fun HelpScreenModel.proceed() =
mutate(copy(showDetails = !showDetails))
}
Content copied to clipboard