In many widgets when we set values from variables, we can also set a default variable value.
Why can we not set it from constants or enums?
For instance, everywhere I am using image in my project I want to set a default image variable.
Usually in code, I can set it default from a CONSTANT variable. But in FlutterFlow I have to paste the default image every time in every widget. In case I decide to change the default placeholder image, I will have to set variable again on all image widgets (I know how I can avoid this).
I feel there should be an option to set these defaults from app constants.