StoryIndicator constructor

StoryIndicator({
  1. Key? key,
  2. required int storyItemsLen,
  3. required int currentItemIndex,
  4. double? progress,
  5. double? indicatorHeight,
  6. Color? indicatorColor,
  7. Color? indicatorValueColor,
  8. EdgeInsets? indicatorPadding = const EdgeInsets.only(top: 40.0),
})

Implementation

StoryIndicator({
  Key? key,
  required this.storyItemsLen,
  required this.currentItemIndex,
  this.progress,
  this.indicatorHeight,
  this.indicatorColor,
  this.indicatorValueColor,
  this.indicatorPadding = const EdgeInsets.only(top: 40.0),
}) : super(key: key);