glow static method
Implementation
static List<BoxShadow> glow(Color color, {double opacity = 0.4, double blur = 24}) => [
BoxShadow(
color: color.withValues(alpha: opacity),
blurRadius: blur,
offset: Offset.zero,
spreadRadius: 2,
),
];