themeOppositeColor function

Color themeOppositeColor(
  1. CQTSThemeBGType? type
)

Implementation

Color themeOppositeColor(CQTSThemeBGType? type) {
  type = type ?? CQTSThemeBGType.pink;
  return theme[type.toString().split('.').last]['themeOppositeColor'];
}