Future API #1

In this lesson, you will learn to use Future API to perform asynchronous operations in Dart.

We'll cover the following...

Future API

Another way to execute asynchronous operations is to use the Future API.

In the Future API, the then() method is used to register a callback, which fires upon the completion of Future.

These are two variants of using the ...