Indicators constructor

const Indicators({
  1. Key? key,
  2. required AnimationController? animationController,
  3. required int storyLength,
  4. required bool isCurrentPage,
  5. required bool isPaging,
  6. required EdgeInsetsGeometry padding,
  7. required Color indicatorUnvisitedColor,
  8. required Color indicatorVisitedColor,
  9. required double indicatorHeight,
})

Implementation

const Indicators({
  Key? key,
  required this.animationController,
  required this.storyLength,
  required this.isCurrentPage,
  required this.isPaging,
  required this.padding,
  required this.indicatorUnvisitedColor,
  required this.indicatorVisitedColor,
  required this.indicatorHeight,
}) : super(key: key);