Flutter, Dart : What are Futures.

Saad El Oulladi
3 min readAug 23, 2019

Coming from an iOS background, some Dart concepts were completely new to me, especially Futures. it took me some time to understand their benefits.
So i wanted to explain in this brief article, what are dart Futures in simple words, and why i think they are awesome.

Future allows to return some value “Later”, or so called Asynchronously. We use it whenever we run something which…

--

--