fillColor method

Color? fillColor(
  1. Color? activateColor
)

Implementation

Color? fillColor(Color? activateColor) {
  if (alpha <= 0) return null;
  return activateColor?.withAlpha(alpha + 80);
}