There was an error while loading. Please reload this page.
async { <FUTURE_EXPR>.await }
<FUTURE_EXPR>
Awaiting a Future a future in a new async block is the same as just using the future directly. I think?
Future
async
redundant_async_block
style, complexity
No response
block_on(async { my_future.await })
Could be written as:
block_on(my_future)
### Tasks