static Color convertStringToColors(String colorCode) { int colorCodeInt = int.parse(colorCode); Color color = Color(colorCodeInt); return color; }