initAnimation method

  1. @override
void initAnimation(
  1. AnimationController controller
)
override

Initialize the Animation.

Implementation

@override
void initAnimation(AnimationController controller) {
  _typewriterText = CurveTween(
    curve: curve,
  ).animate(controller);
}