I was thinking of ``` when (callButtonState) { ...
# getting-started
u
I was thinking of
Copy code
when (callButtonState) {
                0 -> noop()
                1 -> viewModel.hangupCall()
                2 -> viewModel.declineCall()
            }

fun noop(): Nothing {

}