StoryCircle constructor

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

Implementation

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