⚡ Dart Async / Await

Dart uses async and await keywords for asynchronous operations, like waiting for a delay, fetching data, or file I/O.

📝 Example: Async Function with Delay

Console output will appear here...

📖 Key Concepts

💡 Pro Tip: Always use await inside an async function — and remember, Dart's event loop runs single-threaded with Futures scheduled on its microtask queue.