Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

what is final and const verabile in flutter

198

Const
Value must be known at compile-time, const birthday  = "2008/12/25"
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 #verabile #flutter
ADD COMMENT
Topic
Name
5+1 =