<@U0ZFBBUBU> A composable approach to get what you...
# coroutines
e
@groostav A composable approach to get what you want is to start with the following interface:
Copy code
interface AsyncLazy<out T> {
    public suspend fun value(): T
}