unblur method
T
unblur({})
Adds an .unblur() extension to AnimateManager (Animate and AnimateList).
This is identical to the .blur() extension, except it defaults to begin=4, end=0.
Implementation
T unblur({
Duration? delay,
Duration? duration,
Curve? curve,
double? begin = defaultBlur,
double? end = 0,
}) =>
addEffect(BlurEffect(
delay: delay,
duration: duration,
curve: curve,
begin: begin,
end: end,
));