CardCarousel constructor

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

Implementation

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