Marquee constructor
const
Marquee({})
A widget that scrolls a child infinitely.

Implementation
const Marquee({
super.key,
required this.child,
this.curve = Curves.ease,
this.direction = Axis.horizontal,
this.animationDuration = const Duration(seconds: 6),
this.backDuration = const Duration(milliseconds: 800),
this.pauseDuration = const Duration(seconds: 1),
});