outcome

Shorthand for returning an action result with both changes to the model and triggered effects.

For example:

data object OnLoginButtonClick : MainScreenAction {
override fun MainScreenModel.proceed() =
if (username.isBlank() || password.isBlank()) {
skip
} else {
outcome(copy(loading = true), StartLogin(username, password))
}
}