shadow700 static method
Implementation
static List<BoxShadow> shadow700({Color? color}) => [
BoxShadow(
offset: const Offset(0, 14),
spreadRadius: -4,
blurRadius: 64,
color: (color ?? const Color(0xFF18274B)).withOpacity(0.12)),
BoxShadow(
offset: const Offset(0, 8),
spreadRadius: -6,
blurRadius: 22,
color: (color ?? const Color(0xFF18274B)).withOpacity(0.12))
];