FlickerAnimatedText constructor

FlickerAnimatedText(
  1. String text, {
  2. TextAlign textAlign = TextAlign.start,
  3. TextStyle? textStyle,
  4. Duration speed = const Duration(milliseconds: 1600),
  5. double entryEnd = 0.5,
})

Implementation

FlickerAnimatedText(
  String text, {
  TextAlign textAlign = TextAlign.start,
  TextStyle? textStyle,
  this.speed = const Duration(milliseconds: 1600),
  this.entryEnd = 0.5,
}) : super(
        text: text,
        textStyle: textStyle,
        duration: speed,
      );