TextShimmer constructor

const TextShimmer({
  1. Key? key,
  2. bool isDarkMode = false,
  3. bool isPurplishMode = false,
  4. bool hasCustomColors = true,
  5. List<Color> colors = textdefaultColors,
  6. AlignmentGeometry beginAlign = Alignment.topLeft,
  7. AlignmentGeometry endAlign = Alignment.centerRight,
  8. String? text,
  9. double? fontSize,
})

Implementation

const TextShimmer({
  Key? key,
  this.isDarkMode = false,
  this.isPurplishMode = false,
  this.hasCustomColors = true,
  this.colors = textdefaultColors,
  this.beginAlign = Alignment.topLeft,
  this.endAlign = Alignment.centerRight,
  this.text,
  this.fontSize,
}) : super(key: key);