VerticalTextLine constructor

VerticalTextLine({
  1. required VoidCallback onFinished,
  2. double speed = 12.0,
  3. int maxLength = 10,
  4. Key? key,
})

Implementation

VerticalTextLine({
  required this.onFinished,
  this.speed = 12.0,
  this.maxLength = 10,
  Key? key
}) : super(key: key);