shadowMd method
Implementation
ContainerBuilder shadowMd() => boxShadow([
BoxShadow(
color: Colors.black.withValues(alpha: 0.1),
blurRadius: 6,
offset: const Offset(0, 4),
spreadRadius: -2,
),
BoxShadow(
color: Colors.black.withValues(alpha: 0.05),
blurRadius: 4,
offset: const Offset(0, 2),
spreadRadius: -1,
),
]);