buildAnimation method

  1. @override
Widget buildAnimation(
  1. BuildContext context,
  2. AnimationController controller
)
override

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,
  );
}