BaseCarousel constructor

const BaseCarousel({
  1. Key? key,
  2. double? width,
  3. double height = 96,
  4. dynamic calcPadding(
    1. int itemIndex,
    2. int itemCount
    )?,
  5. required List<Widget> children,
})

Implementation

const BaseCarousel({
  super.key,
  this.width,
  this.height = 96,
  this.calcPadding,
  required this.children,
});