initAnimation method
Initialize the Animation.
Implementation
@override
void initAnimation(AnimationController controller) {
_entry = Tween<double>(begin: 0.0, end: 1.0).animate(
CurvedAnimation(
parent: controller,
curve: Interval(0.0, entryEnd, curve: Curves.bounceIn),
),
);
}