SmoothPageIndicator constructor

const SmoothPageIndicator({
  1. Key? key,
  2. required PageController controller,
  3. required int count,
  4. Axis axisDirection = Axis.horizontal,
  5. TextDirection? textDirection,
  6. OnDotClicked? onDotClicked,
  7. IndicatorEffect effect = const WormEffect(),
})

Default constructor

Implementation

const SmoothPageIndicator({
  Key? key,
  required this.controller,
  required this.count,
  this.axisDirection = Axis.horizontal,
  this.textDirection,
  this.onDotClicked,
  this.effect = const WormEffect(),
}) : super(key: key);