The code below doesn't work instead it shows what i want to achieve.
As you can see I want to set text
to use the color that color
is set to.
class AppThemeModal{
AppThemeModal({required this.color});
Color color;
TextStyle text = TextStyle(color: color);
}