themeColor function

Color themeColor(
  1. ThemeBGType? type
)

Implementation

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