getOutlinedShadow static method
Outlined button shadow (minimal)
Implementation
static List<BoxShadow> getOutlinedShadow(Color borderColor) => [
BoxShadow(
color: borderColor.withValues(alpha: 0.08),
blurRadius: 6,
offset: const Offset(0, 2),
),
];