BoxShadow constructor
Creates a box shadow.
By default, the shadow is solid black with zero offset
, zero blurRadius
,
zero spreadRadius
, and BlurStyle.normal.
Implementation
const BoxShadow({
super.color,
super.offset,
super.blurRadius,
this.spreadRadius = 0.0,
this.blurStyle = BlurStyle.normal,
});