OverflowMarquee constructor
const
OverflowMarquee({})
Implementation
const OverflowMarquee({
super.key,
required this.child,
this.direction = Axis.horizontal,
this.duration = const Duration(seconds: 1),
this.delayDuration = const Duration(milliseconds: 500),
this.step = 100, // note: the speed of the marquee depends on this value
// speed = (sizeDiff / step) * duration
this.fadePortion = 25,
this.curve = Curves.linear,
});