CustomBoxShadow constructor

const CustomBoxShadow({
  1. Color color = const Color(_kColorDefault),
  2. Offset offset = Offset.zero,
  3. double blurRadius = 0.0,
  4. BlurStyle blurStyle = BlurStyle.normal,
})

Implementation

const CustomBoxShadow({
  super.color,
  super.offset,
  super.blurRadius,
  BlurStyle blurStyle = BlurStyle.normal,
}) : _blurStyle = blurStyle;