BoxShadowEffect constructor
const
BoxShadowEffect({})
Implementation
const BoxShadowEffect({
Duration? delay,
Duration? duration,
Curve? curve,
BoxShadow? begin,
BoxShadow? end,
this.borderRadius,
}) : super(
delay: delay,
duration: duration,
curve: curve,
begin: begin ?? neutralValue,
end: end ?? (begin == null ? defaultValue : neutralValue),
);