SwiperControl constructor

const SwiperControl({
  1. IconData iconPrevious = Icons.arrow_back_ios,
  2. IconData iconNext = Icons.arrow_forward_ios,
  3. Color? color,
  4. Color? disableColor,
  5. Key? key,
  6. double size = 30.0,
  7. EdgeInsetsGeometry padding = const EdgeInsets.all(5.0),
})

Implementation

const SwiperControl({
  this.iconPrevious = Icons.arrow_back_ios,
  this.iconNext = Icons.arrow_forward_ios,
  this.color,
  this.disableColor,
  this.key,
  this.size = 30.0,
  this.padding = const EdgeInsets.all(5.0),
});