KrakenBoxShadow constructor
const
KrakenBoxShadow({})
Creates a box shadow.
By default, the shadow is solid black with zero offset
, blurRadius
,
and spreadRadius
.
Implementation
const KrakenBoxShadow({
Color color = const Color(0xFF000000),
Offset offset = Offset.zero,
double blurRadius = 0.0,
double spreadRadius = 0.0,
this.inset = false,
}) : super(color: color, offset: offset, blurRadius: blurRadius, spreadRadius: spreadRadius);