Marquee constructor

const Marquee(
  1. {Key? key,
  2. required TextStyle textStyle,
  3. required String text,
  4. double runSpacing = 100,
  5. double? width}
)

Implementation

const Marquee(
    {super.key,
    required this.textStyle,
    required this.text,
    this.runSpacing = 100,
    this.width});