completeText method
Widget showing the complete text (when animation is complete or paused). By default, it shows a Text widget, but this may be overridden.
Implementation
@override
Widget completeText(BuildContext context) =>
rotateOut ? SizedBox.shrink() : super.completeText(context);