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,
})

Implementation

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