FLMarqueeLabel constructor

FLMarqueeLabel({
  1. Key? key,
  2. required String text,
  3. TextStyle? style,
  4. double? space,
  5. double velocity = 0.4,
  6. bool loop = true,
  7. double height = FLMarqueeDefaultHeight,
  8. EdgeInsetsGeometry? padding,
  9. Duration? delay,
  10. Color backgroundColor = Colors.transparent,
})

Implementation

FLMarqueeLabel(
    {Key? key,
    required this.text,
    this.style,
    this.space,
    this.velocity = 0.4,
    this.loop = true,
    this.height = FLMarqueeDefaultHeight,
    this.padding,
    this.delay,
    this.backgroundColor = Colors.transparent})
    : super(key: key);