ColorizeAnimatedText constructor

const ColorizeAnimatedText({
  1. Key? key,
  2. required String? text,
  3. TextStyle? textStyle,
  4. required List<Color> colors,
  5. Duration? speed,
})

Implementation

const ColorizeAnimatedText({
  Key? key,
  required this.text,
  this.textStyle,
  required this.colors,
  this.speed,
}) : super(key: key);