So this (which is also shorter :wink: ) would do t...
# coroutines
l
So this (which is also shorter 😉 ) would do the trick?
Copy code
private suspend fun openCamAsync(): Camera = async(CommonPool) {
    Camera.open()
}.await()