NesRunningText constructor

const NesRunningText({
  1. required String text,
  2. double speed = .08,
  3. TextStyle? textStyle,
  4. VoidCallback? onEnd,
  5. bool running = true,
  6. Key? key,
})

A widget that displays a text that runs from right to left.

Implementation

const NesRunningText({
  required this.text,
  this.speed = .08,
  this.textStyle,
  this.onEnd,
  this.running = true,
  super.key,
});