How can I use await method in not suspend function as like this test code: <https://github.com/Kotli...
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