blurY method
Adds a blurY extension to AnimateManager (Animate and AnimateList).
This blurs only on the y-axis according to the double
begin/end values.
Implementation
T blurY({
Duration? delay,
Duration? duration,
Curve? curve,
double? begin,
double? end,
}) {
end ??= (begin == null ? BlurEffect.defaultBlur : BlurEffect.neutralBlur);
begin ??= BlurEffect.neutralBlur;
return addEffect(BlurEffect(
delay: delay,
duration: duration,
curve: curve,
begin: BlurEffect.neutralValue.copyWith(dy: begin),
end: BlurEffect.neutralValue.copyWith(dy: end),
));
}