LogoCarousel constructor

const LogoCarousel({
  1. required List<LogoItem> logos,
  2. int duration = 30,
  3. double logoHeight = 40,
  4. double gap = 48,
  5. bool pauseOnHover = true,
  6. bool reverse = false,
  7. bool grayscale = true,
  8. String? title,
  9. Key? key,
})

Implementation

const LogoCarousel({
  required this.logos,
  this.duration = 30,
  this.logoHeight = 40,
  this.gap = 48,
  this.pauseOnHover = true,
  this.reverse = false,
  this.grayscale = true,
  this.title,
  super.key,
});