mutate

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))
}