CardCarousel constructor

const CardCarousel({
  1. Key? key,
  2. List<Widget> children = const [],
  3. int? sharpness,
  4. String? featherColor,
  5. double gap = 16,
  6. String? padding,
  7. String? height,
})

Implementation

const CardCarousel({
  super.key,
  this.children = const [],
  this.sharpness,
  this.featherColor,
  this.gap = 16,
  this.padding,
  this.height,
});