How can I use await method in not suspend function...
# coroutines
w
d
It is actually in a suspending lambda in the code you linked,
promise
is a function that takes a suspending lambda (which can then call
await
).
w
Oh got it! thank you