SuperChar constructor

SuperChar(
  1. String char, {
  2. Key? key,
  3. required Duration animDuration,
  4. required SuperTextType type,
  5. TextStyle? style,
  6. double? textScaleFactor,
})

Constructs a SuperChar widget.

Implementation

SuperChar(
  String char, {
  super.key,
  required this.animDuration,
  required this.type,
  this.style,
  this.textScaleFactor,
}) {
  this.char.value = char;
}