BlurTextBit constructor

const BlurTextBit({
  1. Key? key,
  2. required String text,
  3. String animateBy = 'words',
  4. String direction = 'top',
  5. int delay = 200,
  6. double stepDuration = 0.35,
  7. double threshold = 0.1,
  8. String rootMargin = '0px',
  9. VoidCallback? onAnimationComplete,
})

Implementation

const BlurTextBit({
  super.key,
  required this.text,
  this.animateBy = 'words',
  this.direction = 'top',
  this.delay = 200,
  this.stepDuration = 0.35,
  this.threshold = 0.1,
  this.rootMargin = '0px',
  this.onAnimationComplete,
});