VxMarquee constructor

const VxMarquee({
  1. Key? key,
  2. required String text,
  3. TextStyle? textStyle,
  4. Axis scrollAxis = Axis.horizontal,
  5. double ratioOfBlankToScreen = 0.25,
})

Implementation

const VxMarquee({
  super.key,
  required this.text,
  this.textStyle,
  this.scrollAxis = Axis.horizontal,
  this.ratioOfBlankToScreen = 0.25,
});