boxShadow method
T
boxShadow({})
Adds a boxShadow extension to AnimateManager (Animate and AnimateList).
Implementation
T boxShadow({
Duration? delay,
Duration? duration,
Curve? curve,
BoxShadow? begin,
BoxShadow? end,
BorderRadius? borderRadius,
}) =>
addEffect(BoxShadowEffect(
delay: delay,
duration: duration,
curve: curve,
begin: begin,
end: end,
borderRadius: borderRadius,
));