What is the difference between final, const, and var in Dart?

 

KeywordDescriptionExample
varVariable with dynamic typevar name = "Ankur";
finalValue cannot be reassignedfinal age = 30;
constCompile-time constantconst pi = 3.14;

Comments

Popular posts from this blog

1. What is Flutter?

What is FutureBuilder and StreamBuilder?