HeighLightStackController constructor

HeighLightStackController({
  1. required int storyLength,
  2. required VoidCallback onPageForward,
  3. required VoidCallback onPageBack,
  4. dynamic initialStoryIndex = 0,
})

Implementation

HeighLightStackController({
  required this.storyLength,
  required this.onPageForward,
  required this.onPageBack,
  initialStoryIndex = 0,
}) : super(initialStoryIndex);