Variables are used to store data in a program. Every Flutter developer works with variables every day, so understanding them is an important first step in learning Dart.
When you already know the type of data, declare it explicitly.
String name = "Tuhin";
int age = 22;
double height = 5.8;






