SuragchFollowOct 24, 2020·5 min readVariables and types in DartFor people new to programmingRecently I’ve been teaching a class about Flutter, so this article is an introduction to Dart with a few practice exercises.VariablesA variable is a name that can hold a value. Here’s an example:var x = 1;