themeOppositeColor function

Color themeOppositeColor(
  1. ThemeBGType? type
)

Implementation

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