AnimatedText constructor

const AnimatedText({
  1. Key? key,
  2. required String text,
  3. TextStyle? style,
  4. AnimatedTextRotation textRotation = AnimatedTextRotation.up,
})

Implementation

const AnimatedText({
  Key? key,
  required this.text,
  this.style,
  this.textRotation = AnimatedTextRotation.up,
}) : super(key: key);