What is the difference between the "const" and "final" keywords in Dart?
The value of variables marked final can be changed at run time, so why bother marking them final anyway?
What would be the difference between:-
String x;
final y;
Both can be changed at run time, so why use the final keyword?
Please explain.