VxMarquee constructor

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

Implementation

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