Marks Dart and Flutter Blog

Asynchronous Processing in Dart and Flutter - Part Three - Async and Await
Asynchronous Processing in Dart and Flutter - Part Three - Async and Await
Async When an async method is called, a Future is immediately returned, and the body of the method is executed later. Later on, as the body of the async function... Read more...
Asynchronous Processing in Dart and Flutter - Part Two - Futures and Error Handling
Asynchronous Processing in Dart and Flutter - Part Two - Futures and Error Handling
What is a Future? Futures are used to store the results of asynchronous processes.  As mentioned in Part One, asynchronous operations can result in Success (often with data) and Failure... Read more...
Asynchronous Processing in Dart and Flutter - Part One - Overview
Asynchronous Processing in Dart and Flutter - Part One - Overview
What is Asynchronicity? It is the ability to do multiple things at the same time. UI Thread A thread is a thread of execution in a program. It is some... Read more...