Stories constructor

const Stories({
  1. Key? key,
  2. List<StoryItem>? storyItemList,
  3. TextStyle? storyCircleTextStyle,
  4. Color? highLightColor,
  5. double? circleRadius,
  6. double? circlePadding,
  7. double? borderThickness,
  8. TextStyle? fullPagetitleStyle,
  9. Color? paddingColor,
  10. bool? displayProgress,
  11. Color? fullpageVisitedColor,
  12. Color? fullpageUnisitedColor,
  13. double? spaceBetweenStories,
  14. bool? showThumbnailOnFullPage,
  15. double? fullpageThumbnailSize,
  16. bool? showStoryNameOnFullPage,
  17. Color? storyStatusBarColor,
  18. Function? onPageChanged,
  19. Duration? autoPlayDuration,
  20. bool showStoryName = true,
})

Implementation

const Stories({
  Key? key,
  this.storyItemList,
  this.storyCircleTextStyle,
  this.highLightColor,
  this.circleRadius,
  this.circlePadding,
  this.borderThickness,
  this.fullPagetitleStyle,
  this.paddingColor,
  this.displayProgress,
  this.fullpageVisitedColor,
  this.fullpageUnisitedColor,
  this.spaceBetweenStories,
  this.showThumbnailOnFullPage,
  this.fullpageThumbnailSize,
  this.showStoryNameOnFullPage,
  this.storyStatusBarColor,
  this.onPageChanged,
  this.autoPlayDuration,
  this.showStoryName = true,
}) : super(key: key);