What is the difference between const and final keyword in Dart?
const
final
const is a Compile-time constant.
final is a Run-time constant.