Beginner
Flutter
Q21 / 100
What keyword pauses execution inside an async function until a Future completes?
Correct! Well done.
Incorrect.
The correct answer is D) await
D
Correct Answer
await
Explanation
The await keyword pauses the execution of an async function until the Future it is waiting on completes, then resumes with the result. The function must be marked with the async keyword to use await.
Progress
21/100