final vs const Dart
Const
Value must be known at compile-time, const int year = 2022;
Can't be changed after initialized.
Final
Value must be known at run-time, final birthday = getBirthDateFromDB()
Can't be changed after initialized.
Hey Argon