Answers for "final vs const dart"

2

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.
Posted by: Guest on April-07-2022

Code answers related to "Dart"

Browse Popular Code Answers by Language