buildAnimation method
Subclasses must implement this to build the animated widget.
Implementation
@override
Widget buildAnimation(BuildContext context, AnimationController controller) {
return _FallingTextAnimation(
controller: controller,
text: text,
style: style,
fallHeight: fallHeight,
autoStart: autoStart,
mode: mode,
);
}