Variables and types in Dart

Suragch
5 min readOct 24, 2020

For people new to programming

Recently I’ve been teaching a class about Flutter, so this article is an introduction to Dart with a few practice exercises.

Variables

A variable is a name that can hold a value. Here’s an example:

var x = 1;

--

--