is there a more concise way to do this? ``` when (...
# getting-started
p
is there a more concise way to do this?
Copy code
when (strBoolean) {
                "true" -> true
                "false" -> false
                else -> null
            }
?