TintEffect constructor
const
TintEffect({})
Implementation
const TintEffect({
Duration? delay,
Duration? duration,
Curve? curve,
double? begin,
double? end,
Color? color,
}) : color = color ?? const Color(0xFF000000),
super(
delay: delay,
duration: duration,
curve: curve,
begin: begin ?? neutralValue,
end: end ?? (begin == null ? defaultValue : neutralValue),
);