What is the difference between const and final keyword in Dart?
const
final
If you are coming from C++ then const in Dart is constexpr in C++ and final in Dart is const in C++.
C++
Dart
constexpr
The above applies to primitive types only. However in Dart objects marked final are mutable in terms of it's members.