TypewriterText constructor

const TypewriterText({
  1. Key? key,
  2. required String text,
  3. TextStyle? style,
  4. Duration characterDelay = const Duration(milliseconds: 50),
  5. String? cursor,
  6. Duration pause = const Duration(seconds: 1),
  7. bool loop = false,
  8. bool showFullOnFinish = true,
})

Implementation

const TypewriterText({
  super.key,
  required this.text,
  this.style,
  this.characterDelay = const Duration(milliseconds: 50),
  this.cursor,
  this.pause = const Duration(seconds: 1),
  this.loop = false,
  this.showFullOnFinish = true,
});