boxShadow method
void
boxShadow({})
Implementation
void boxShadow(
{Color color = const Color(0x33000000),
double blur = 0.0,
Offset offset = Offset.zero,
double spread = 0.0}) =>
_boxShadow = [
BoxShadow(
color: color,
blurRadius: blur,
spreadRadius: spread,
offset: offset,
),
];