ListenEffect constructor
const
ListenEffect({})
Implementation
const ListenEffect({
Duration? delay,
Duration? duration,
Curve? curve,
double? begin,
double? end,
required this.callback,
this.clamp = true,
}) : super(
delay: delay,
duration: duration,
curve: curve,
begin: begin ?? 0.0, // Should this use "smart" defaults?
end: end ?? 1.0,
);