AnimatedScrollingText constructor

const AnimatedScrollingText({
  1. Key? key,
  2. required List<Widget> widgets,
  3. double height = 35,
  4. double width = 200,
  5. Duration delay = const Duration(seconds: 2),
  6. EdgeInsets padding = const EdgeInsets.only(top: 2, bottom: 2),
})

Implementation

const AnimatedScrollingText({
  super.key,
  required this.widgets,
  this.height = 35,
  this.width = 200,
  this.delay = const Duration(seconds: 2),
  this.padding = const EdgeInsets.only(top: 2, bottom: 2),
});