ArcaneInfiniteCarousel constructor

const ArcaneInfiniteCarousel({
  1. Key? key,
  2. required List<Component> children,
  3. String gap = '1.5rem',
  4. int animationDuration = 60,
  5. bool showFadeEdges = true,
  6. String fadeWidth = '150px',
  7. String backgroundColor = 'var(--card)',
  8. int resumeDelay = 5,
})

Implementation

const ArcaneInfiniteCarousel({
  super.key,
  required this.children,
  this.gap = '1.5rem',
  this.animationDuration = 60,
  this.showFadeEdges = true,
  this.fadeWidth = '150px',
  this.backgroundColor = 'var(--card)',
  this.resumeDelay = 5,
}) : trackClass = null;