(Shameless stolen from my own Stack Overflow question and answer.) Dart has a concept of final. Most dynamic languages don't have this concept. What is final and what do I use it for? final variables can contain any value, but once assigned, a final variable can't be reassigned to any other value. For example: main() { final msg = 'hello'; msg = 'not allowed'; // **ERROR**…