Answers for "what is final and const verabile in flutter"

0

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.
Posted by: Guest on January-02-2022

Browse Popular Code Answers by Language