FlipEffect constructor
const
FlipEffect({})
Implementation
const FlipEffect({
Duration? delay,
Duration? duration,
Curve? curve,
double? begin,
double? end,
alignment,
perspective,
direction,
}) : alignment = alignment ?? Alignment.center,
perspective = perspective ?? defaultPerspective,
direction = direction ?? defaultAxis,
super(
delay: delay,
duration: duration,
curve: curve,
begin: begin ?? (end == null ? defaultValue : neutralValue),
end: end ?? neutralValue,
);