ArrowPageIndicator constructor

const ArrowPageIndicator({
  1. Key? key,
  2. required PageController pageController,
  3. required ValueNotifier<int> currentPageNotifier,
  4. required int itemCount,
  5. required Widget child,
  6. Widget? rightIcon,
  7. Widget? leftIcon,
  8. Color? iconColor,
  9. EdgeInsetsGeometry iconPadding = defaultPadding,
  10. int duration = defaultDuration,
  11. Curve curve = defaultCurve,
  12. bool isJump = false,
  13. bool isInside = false,
  14. double iconSize = defaultIconSize,
  15. String? tooltipLeft,
  16. String? tooltipRight,
})

Implementation

const ArrowPageIndicator({
  Key? key,
  required this.pageController,
  required this.currentPageNotifier,
  required this.itemCount,
  required this.child,
  this.rightIcon,
  this.leftIcon,
  this.iconColor,
  this.iconPadding = defaultPadding,
  this.duration = defaultDuration,
  this.curve = defaultCurve,
  this.isJump = false,
  this.isInside = false,
  this.iconSize = defaultIconSize,
  this.tooltipLeft,
  this.tooltipRight,
}) : super(key: key);