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