KiteCarousel constructor

const KiteCarousel({
  1. required List<Widget> children,
  2. Key? key,
  3. double height = Dimensions.s64 * 3,
  4. double viewportFraction = .92,
  5. bool showIndicator = true,
})

Implementation

const KiteCarousel({
  required this.children,
  super.key,
  this.height = Dimensions.s64 * 3,
  this.viewportFraction = .92,
  this.showIndicator = true,
});