GradientAnimationText constructor

const GradientAnimationText({
  1. required Text text,
  2. required List<Color> colors,
  3. required Duration duration,
  4. bool? reverse,
  5. GradientTransform? transform,
  6. Key? key,
})

Implementation

const GradientAnimationText({
  required this.text,
  required this.colors,
  required this.duration,
  this.reverse,
  this.transform,
  super.key,
});