Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

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.
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #final #const #dart
ADD COMMENT
Topic
Name
7+9 =