shadowS static method

BoxShadow shadowS({
  1. Color? color,
})

Implementation

static BoxShadow shadowS({Color? color}) {
  return BoxShadow(
    color: color ?? HexColor("#F1F5F9"),
    offset: Offset(0, 4),
    blurRadius: 4,
  );
}