If I declare that in Dart : final Color _iconColor = Color.fromARGB(210, 198, 15, 1
, Vs Code
display this message :
Prefer const with constant constructors.
So the result is :
final Color _iconColor = const Color.fromARGB(210, 198, 15, 1);
. And VsCode is good.
But if my variable _iconColor is already final, why add const inside ?