Wm Leler
1 min readJul 5, 2018

--

In Dart, var just means that you are letting type inference determine the type of a variable. You never have to use var, you can always specify the type explicitly. For example:

var foo = “bar”;

is exactly the same thing as:

String foo = “bar”;

--

--

Wm Leler
Wm Leler

Written by Wm Leler

Computer scientist, musician, artist.

No responses yet