boxShadow method
Implementation
BoxShadow boxShadow(
double x,
double y,
double b, {
Color color = AppColors.shadowColor,
double spreadRadius = 0.0,
}) {
return BoxShadow(
offset: Offset(x, y),
blurRadius: b,
spreadRadius: spreadRadius,
color: color,
);
}