When declaring variables in Dart, prefer const
over final
over var
:
const
is for hardcoded, compile-time constantsfinal
is for read-only variables that are set just oncevar
is for variables that are set more than once
The static analyzer will help you choose wisely. 🙂
Found this useful? Show some love and share the original tweet 🙏
Previous | Next |
---|---|
Flutter app localization in 5 min | Use type annotations for safer code |