ComSwiper constructor

const ComSwiper({
  1. Key? key,
  2. required List images,
  3. double height = 160.0,
  4. double radius = 8.0,
  5. SwipeStyle style = SwipeStyle.dots,
  6. ValueChanged<int>? onTap,
  7. String? name,
  8. EdgeInsets? margin,
})

Implementation

const ComSwiper({
  super.key,
  required this.images,
  this.height = 160.0,
  this.radius = 8.0,
  this.style = SwipeStyle.dots,
  this.onTap,
  this.name,
  this.margin,
});