Hi, is it bad practice to use an `async(start = LA...
# getting-started
t
Hi, is it bad practice to use an
async(start = LAZY) {...}
As kind of a async version of
lazy {...}
?
c
No, it's good practice, that's why the argument exists.
t
lazy { async { ... } }
Works a lot better! Thank you!
c
Oh. Thank you, TIL