switchHoverColor method

Color? switchHoverColor(
  1. BuildContext context, {
  2. Set<MaterialState>? materialStates,
  3. Map<String, dynamic>? extraInfo,
})

Implementation

Color? switchHoverColor(BuildContext context, {Set<MaterialState>? materialStates, Map<String, dynamic>? extraInfo}) {
  return switchActiveColor(context, materialStates: materialStates, extraInfo: extraInfo)?.withAlpha(50);
}