themeColor function
Implementation
Color themeColor(ThemeBGType? type) {
type = type ?? ThemeBGType.theme;
return theme[type.toString().split('.').last]['themeColor'];
}
Color themeColor(ThemeBGType? type) {
type = type ?? ThemeBGType.theme;
return theme[type.toString().split('.').last]['themeColor'];
}